0
votes
0answers
23 views
How do you force linq to sql to use the correct data type for sql parameters?
I have a situation where a certain linq query that runs against a multi-million row table is taking far to long to run. I dissected the linq query output and found that it was crea …
1
vote
3answers
68 views
Dynamic Data | LINQ TO SQL | General Validation
I have 5 different entities for which dynamic data(with LINQTOSQL) was generated.
On Insert(Insert.aspx) of any of these entities, if there is an error, I would like to notify user …
1
vote
2answers
35 views
Does calling ToArray on IQueryable de-attach the entity in LinqToSql?
I have a LinqToSql query that returns an array of Article objects like so:
return db.Articles.ToArray();
I then loop over this array and start to delete some items that meet a …
