I have a question about One-To-Many relationship between two tables when there is the link (join) table between.
Here is the problem: I need to return a collection of objects with filtered nested collections. E.g: there is a store with orders and I need to return a collection with stores that includes nested col
I have a discussion object which in it self has a ParentDiscussion and TopParentDiscussion: public class Discussion
I\'ve got an existing EF4.1 project which is working just fine. I\'ve added a new SP to the DB which returns a new kind of an entity (an existing entity with some additional fields).
I have a base class that I inherit from that has two zero to many relationships with other entities: public abstract class WebObject
I am using Entity Framework 4.1 code first. I had a table in the database with the name MaritalStatus.I deleted it and created a new table in its place called MaritalStatuses.Whenever I try to get al
We use code-first EF 4 with DbContext and DbSet<> and POCOs with DataAnnotations. I am new to this and cannot seem to find an answer to my quesiton:
I am follwoing this tutorialfrom http://www.asp.net/entity-framework/tutorials/creating-an-entity-framework-data-model-for-an-asp-net-mvc-application
Is it possible to set up Address (complex type) being lazy loaded for Customer in this example: Entity Framework 4.1 – Component mapping ?
The same topic was discussed here 8 months ago: How do I speed up DbSet.Add()?. There was no solution proposed other than using SqlBulkCopy which is not acceptable for us. I\'ve decided to bring it up