DamienG

1,179
reputation
98 views

Registered User

name DamienG
member for 1 year
seen Dec 5 at 20:13
website
location Redmond, WA
age
Developer at Microsoft on the LINQ to SQL & Entity Framework teams. Working on Entity Framework CodeOnly right now. Part time font geek.
Dec
8
accepted In Memory DataContext
Nov
19
answered In Memory DataContext
Nov
19
comment LINQ To SQL exception with Attach(): Cannot add an entity with a key that is alredy in use
As JustLoren says Attach is there for giving a context an entity it doesn't yet have - it can't be used to replace one. In a typical situation if you are getting an object back it is sometime later and will be attached to a new data context.
Oct
23
accepted SQL Express 2008 Not committing LINQ to SQL writes in sequence?
Oct
19
answered how can I do, distinct of Dates in LINQ to ENTITIES?
Oct
19
answered Linq to Sql, derived to derived association
Oct
19
comment How does the Entity Framework and the LINQExtender project differ?
For Entity Framework to be able to access a database you need an ADO.NET Provider that supports 3.5 features - i.e. specific EF support. You can't just throw CSV at it.
Oct
9
comment Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?
In this case you might want to measure it - I'd be surprised if the overhead of parsing this query is any more efficient than the compiled query route.
Oct
9
comment SQL Express 2008 Not committing LINQ to SQL writes in sequence?
The sequence you requested is always reordered as it has to create objects before it can assign references to them etc. I'm not sure how this is causing you issues unless you have triggers?
Oct
9
comment Why is HasLoadedOrAssignedValue Property set to true?
If you take a look at the code you'll see that the property accessor is a lazy-load implementation. When you access the property it heads to the database with the foreign key so it can create the object and assign it to the property. Once it has done this it doesn't like you changing the foreign key because then there is an inconsistency as the FK and entity property no longer match.
Oct
9
accepted Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?
Oct
9
accepted Can Linq-To-Sql be aware of similarities of two tables?
Oct
8
accepted Why is HasLoadedOrAssignedValue Property set to true?
Oct
8
revised Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?
added 59 characters in body
Oct
8
answered SQL Express 2008 Not committing LINQ to SQL writes in sequence?
Oct
8
answered Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?
Oct
8
answered Why is HasLoadedOrAssignedValue Property set to true?
Oct
8
comment Is it a bad idea to jump into LINQ to SQL now?
LINQ to SQL has not reached the end of it's life so you're hardly "laying out the facts". The fact is Entity Framework is getting more resources than LINQ to SQL.
Oct
8
answered Linq to Entities query hitting db twice
Oct
8
comment Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?
Unfortunately not.
Oct
8
comment Can Linq-To-Sql be aware of similarities of two tables?
This is not true - the table name and class name can be different.
Oct
8
answered NLOG to output db.out
Oct
8
answered Can Linq-To-Sql be aware of similarities of two tables?
Oct
8
answered Is it possible to extend Visual Studio Linq-to-Sql designer to support geometry types?
Oct
3
comment Linq function based on stored procedure which does count(*) returns null
It might be related to a bug we had in the designer that was fixed in 4.0.
Oct
1
comment Optimizing Stored Procedures so they will be processed properly by Linq2SQL
Avoiding the Exec sproc would be a good start - it can easily lead to SQL injection and hurts performance just as much as dynamic SQL. Without seeing the SP itself it is difficult to guess how it could be rewritten.
Oct
1
answered Linq caching data values - major concurrency problem?
Oct
1
answered Does Linq to Entities 4.0 have Fulltext capabilities?
Oct
1
comment Linq to entities Left Join
For what it's worth DefaultIfEmpty is included in EF .NET 4.0.
Sep
12
awarded  Yearling
Sep
4
accepted Optimizing Stored Procedures so they will be processed properly by Linq2SQL
Aug
31
answered Optimizing Stored Procedures so they will be processed properly by Linq2SQL
Aug
26
answered Is there such thing as a technical manual that is not inherently staggeringly dull to read?
Aug
25
comment Linq to SQL for a new project
There are some additional complexities around the update/insert syntax , change tracking and concurrency conflict resolution that shouldn't be dismissed.
Aug
25
answered Getting rows from a SQL table matching a dictionary using LINQ
Aug
25
answered Why does visual studio ask give option to discard in-memory changes?
Jul
23
answered LinqToSql - mapping exception when using abstract base classes
Jul
23
comment Linq to SQL and Collection operations
Exactly what error are you getting with this version? (It can't be the same as the ContainsKey one and 2005/2008 providers can't independently generate "no supported translation" exceptions).
Jul
23
comment linq to sql query using methods
This isn't even LINQ to SQL specific - in the first case the compiler produces an expression tree that a LINQ provider can translate. In the second case it produces the Count part as IL which would require runtime reverse-engineering/decompilation before it could try and figure out what was going on and translate it.
Jul
17
comment Debugging LINQ to SQL SubmitChanges()
Somebody had created an association from one entity to another where the foreign end was not the primary key. This is a bug in 3.5 SP1.
Jul
17
answered What is the difference between drop table and delete table in SQL Server?
Jul
17
comment ASP.NET-MVC (IIS6) Error on high traffic: Specified cast is not valid
Are you passing a connection into the DataContext's constructor and using it elsewhere or just a connection string?