A tag for ADO.
I'm using Entity Framework 4 with the Model First approach. I started the project, designed the entities and generated the database. …
.net entity-framework entity-framework-4i'm using Entity Framework 4.0 and having a silly problem that i can't figure out. I have two tables: Contact: Id (…
c# foreign-keys entity-framework-4Okay, so I'm new to both EF and LINQ. I have figured out how to INSERT and DELETE but for …
c# linq entity-framework entity-framework-4 linq-to-entitiesI am using Entity Framework 5 code first and ASP.NET MVC 3. I am struggling to get a child object's child …
entity-framework entity-framework-4 entity-framework-5 entity-framework-4.1I recently had to edit my app.config file to change the connection string for an Entity Framework data model (.…
entity-framework entity-framework-4 connection-string app-configI have a strange error. I'm experimenting with a .NET 4.5 Web API, Entity Framework and MS SQL Server. I've already …
c# serialization entity-framework-4 asp.net-web-apivar result = (from bd in context.tblBasicDetails from pd in context.tblPersonalDetails.Where(x => x.UserId == bd.UserId).DefaultIfEmpty() …
entity-framework-4 linq-to-entitiesI am using the entity framework (ef) and am getting the following error: "The result of a query cannot be …
c# asp.net linq entity-framework entity-framework-4Using this code in Entity Framework I receive the following error. I need to get all the rows for a …
linq entity-framework-4 linq-to-entitiesDoes the virtual keyword has an effect when used on the properties in EF Code First?. Can someone describe all …
entity-framework-4 ef-code-first entity-framework-4.1