0
votes
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
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. …
