This tag is for questions about LINQ to Entities, which means LINQ queries using the ADO.
I have seen a few answers to similar questions, however I cannot seem to work out how to apply the …
c# entity-framework linq linq-to-entitiesWhat is difference between .edmx and .dbml file in linq?In VS 2008 which datasource is best choice where edmx or …
linq linq-to-sql entity-framework linq-to-entitiesI have a textbox that allows a user to specify a search string, including wild cards, for example: Joh* *Johnson *…
c# sql linq-to-entitiesI have three tables. Two of them join equally but one will need to join with a left. I'm finding …
linq linq-to-entities linq-to-objectsHow do i return matching entities in a random order? Just to be clear this is Entity Framework stuff and …
c# entity-framework linq-to-entitiesI am trying to create a query in my domain service (VS 2010 Silverlight Business Application) that returns the results from …
c# visual-studio-2010 linq-to-entities hierarchical-data silverlight-5.0I have the following code: return this.ObjectContext.BranchCostDetails.Where( b => b.TarrifId == tariffId && b.Diameter == diameter || (…
c# linq lambda null linq-to-entitiesI have a method that returns data from an EF model. I'm getting the above message, but I can't wotk …
c# linq linq-to-entitiesI am quite sure I've seen the answer to this question somewhere, but as I couldn't find it with a …
asp.net-mvc entity-framework linq-to-entitiesI cannot find any examples on how to do a Bulk/batch insert using Linq to Entities. Do you guys …
c# asp.net-mvc entity-framework linq-to-entities