Search Results

0
votes

How to do a “where in values” in LINQ-to-Entities

Contains is not supported in EF at this time. …
2
votes

Does Linq to Entities 4.0 have Fulltext capabilities?

There are no specific operators or support for full text directly in EF v4.0. …
1
vote

Linq to Entities query hitting db twice

Is ent.Inspectors an IEnumerable containing two items? …
0
votes

Linq to Sql, derived to derived association

LINQ to SQL only supports table-per-heirarchy, not table-per-type. …
1
vote

how can I do, distinct of Dates in LINQ to ENTITIES?

The problem is you are applying distinct not on a date column here but on an anonymous type - this will never work as the type has no concept of equality as it has not been defined for this type. …