Viewing 15 posts - 76 through 90 (of 247 total)
Rants about sucky developers aside, SSDT actually is a fairly decent development tool. I use it pretty much daily. It integrates with source code control quite well, and I can...
September 1, 2017 at 7:47 am
This isn't really pertinent to your question but it is sort-of a "hidden cost" if you're not careful,
If you're using Developer Edition and deploying to Standard Edition, don't...
July 24, 2017 at 6:57 am
June 29, 2017 at 7:06 am
June 8, 2017 at 6:52 am
April 20, 2017 at 7:54 am
If you're using Entity Framework, you might also check your code. Make sure your mapping classes (if you are using them) are specifying column sizes for string columns, or that...
March 24, 2017 at 6:48 am
We've built and deployed a number of packages in VS2015, targeted to SSIS 2014. All seems to be working fine so far. They are all pretty simple ones though, mostly...
January 6, 2017 at 6:39 am
Your cow-orker should learn about data annotations.
In current version of Visual studio (2015), SQL Server 2014, this entity does indeed create an NVARCHAR(max) column:
public class TestEntity
{
public...
October 28, 2016 at 6:53 am
Grant Fritchey (9/26/2016)
September 26, 2016 at 7:22 am
It's "unto"...."do unto others..."
"Do on to others..." just sounds wrong. 😀
September 8, 2016 at 6:31 am
lshanahan (6/7/2016)
Microsoft isn't being too helpful in this regard. They're heavily pushing the "Code First" development model using EF to create/modify tables for objects and linking directly to them.
The...
June 7, 2016 at 6:35 am
David.Poole (5/23/2016)
May 23, 2016 at 12:39 pm
David.Poole (5/21/2016)
ORMs are fine for prototyping.The issues I have with them are:
[Ul]
- I now have to give direct table access to people I don't know, let alone trust
[/ul]
No you...
May 23, 2016 at 6:52 am
FunkyDexter (5/18/2016)
I'm not experiencing this...not using Select() when I run a LINQ query, I get just the columns defined in my entity
EF will only select the columns required by the...
May 18, 2016 at 11:35 am
"One of the issues (features?) with Entity Framework is that by default the queries all run as SELECT *. Instead of bringing back all of the columns in a table"
I'm...
May 17, 2016 at 6:44 am
Viewing 15 posts - 76 through 90 (of 247 total)