Tagged Questions

11
votes
3answers
2k views

Entity Framework & LINQ To SQL - Conflict of interest?

I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities ...
3
votes
3answers
461 views

In what situations, should I use Entity SQL?

I was wondering whether there are situation that's more advisable to use ESQL? Generally, I find ESQL a PIA (specially with all the special cases where you need to fully qualify an entity type) & ...
0
votes
1answer
188 views

Can I use Entity SQL to query an IQueryable<T>?

I know I can use ESQL to query an ObjectSet of T but can I use it to query an arbitrary IQueryable of T? EDIT Example: var originalQuery = from t in Transactions where t.Date < DateTime.Now ...
0
votes
1answer
160 views

How to change the condition of 2 ESQL where clauses in the final expression?

I have a fairly complex query where I am filtering results with a LIKE statement. Here is the query: var qsFilter = entities.QueryStatements.Where("it.Statement LIKE @searchTerm", new ...