I need some advice on part of my model I am designing. As you can see in my Rfi entity, I have a collection of BaseImpact types. There will be several types of impacts that can be added to that collec
I have been developing a site using entity framework and sql server compact edition that is no wready to be deployed. SqlCE along with EF code first has been great - it has dramatically reduced my dev
Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this
Let\'s use a simple example: public class Employee { public int EmployeeID { get; set; } public ICollection<Pay> Pays { get; set; }
I have a class that have a relationship with itself: public class Person { public long ID { get; set; } public string Name { get; set; }
I am trying my hand on EF with EF4.1 Code Frist. I have developed my models, like: public class User { [Key]
Can one access the configuration created during an implementation of DbContext.OnModelCreating in an implementation of IDatabaseInitializer.InitializeDatabase?Given an instance of DbContext, I am unab
I\'ve read DDD Evans, and I\' experimenting with an aggregate root repository design using C# and Entity Framework 4.1 + LINQ.
Lets say I have Customer, Order, OrderDetail classes in the busin开发者_StackOverflow社区ess layer (It\'s a simplified version of my problem).
I have been trying out EF 4.1 (code first) with MVC 3. I am thinking ahead to when the application will need changes. I tested a couple of scenarios. I like the idea of manually editing the database w