0
votes
2answers
14 views
LinqToSql + calling .Count fails in production only
Hello,
This should be very simple, but its very frustrating.
I have a LinqToSql as below, it works fine in development but when i move the code to production it blows up on .Coun …
0
votes
2answers
33 views
Linqtosql - Returning custom class with interface
Why can't I return as a new custom class (cms.bo.Site) which implements ISite?
public IQueryable<ISite> GetSites()
{
return (from site in Db.Sites select new cms.bo.Site …
1
vote
2answers
26 views
How to transfer data when using LINQ as DAL?
Hi
I'm creating my first linq based project. The DAL consists of LinqToSQL classes. And the logic layer is just another DLL for keeping it simple.
I wanted to know how do I pass …
0
votes
3answers
34 views
LINQ to SQL Dynamic Sort question
How do I code the Select clause in my LINQ satament to select column aliases so I can sort on them basically I want to accomplish this SQL statement in LINQ:
select
type_id …
1
vote
1answer
35 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
88 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
43 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 …
0
votes
1answer
17 views
How to recover from System.Data.Linq.DuplicateKeyException without disposing DataContext?
By design I'm expecting a DuplicateKeyExeception from time to time.
Is it possible to recover from such situation without recreating the Datacontext?
Ideally I would like to remov …
