This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.
I have Entity Framework set up and it works fine most of the time I need it. I have a …
c# entity-framework linq-to-entities entity-framework-6We have several projects in VB.Net, using .Net Framework 4 and Linq to Entities for many of our SQL queries. …
vb.net linq-to-entities nullable vb.net-2010 nothingI'd like to know if you can recommend any advanced ADO.NET libraries for working with databases. I've discovered that …
sql sql-server ado.net linq-to-entities wcf-data-servicesI am using the following LINQ query for my profile page: var userData = from u in db.Users .Include("UserSkills.…
performance linq entity-framework asp.net-mvc-2 linq-to-entitiesI needed to build a dynamic filter and I wanted to keep using entities. Because of this reason I wanted …
c# linq-to-entities predicatebuilderI have an entity that I'd like to compare with a subset and determine to select all except the subset. …
linq linq-to-entities iequalitycomparerStruggling with very simple code that isn't working where similar code is working in other classes. It won't compile if …
c# .net linq linq-to-entitiesIn the post here I learned how to build a dynamic query using the deferred execution of Linq. But the …
c# linq entity-framework linq-to-entities where-clauseI am using Code First Entity Framework. I am using the following simple classes: public class Users { public ICollection<…
c# linq entity-framework linq-to-entities icollectionI am trying to build an expression tree programmatically. I have in my input, a list of condition classes which …
entity-framework linq linq-to-entities linq-expressions dynamic-linq