GraphDiff
GraphDiff copied to clipboard
GraphDiff is a library that allows the automatic update of a detached graph using Entity Framework code first.
This is less of an Issue and more a Discussion. EFGraphDiff is a huge help when saving, but I've found I come up wanting when loading for a couple of...
I'm using GraphDiff in a few projects that perform a lot of batch updates and inserts. Here are my optimizations that made it about 15-20x faster in my use cases....
Hi, we use GraphDiff + EF6 in our project and it works great. But now we would like to update to EF7 and use GraphDiff for updates. As it look...
When mapping `Associated*` relationships, GraphDiff does not enforce optimistic concurrency. I think that for many-to-many relationships this is a good default behavior (the other entity is not really modified). I...
Hi I got this "simple" model ``` c# public class Container { public int Id { get; set; } public string Name { get; set; } public List Items {...
First off, great work with graphdiff, it really makes a different when developing webpages and working with detached entities. I've come across a issue which I'm not able to figure...
AssociatedCollection write null into the added entity's column check the following Code First, MS Tests ``` public class ManyToManyLeft { public ManyToManyLeft() { Items = new List(); } public int...
I have this model: ``` public class Customer { public int Id {get; set;} public int Name {get; set;} public virtual ICollection Categories {get; set;} } public class CustomerCategory {...
I have the following structure: ParentCompany - Id, Name ChildCompany - Id, Name Employee - Id, Name ParentCompanyChildCompany - Id, ChildCompanyId, ParentCompanyId ChildCompanyEmployee - Id, ChildCompanyId, EmployeeId My goal in...
Currently, if we want to use GraphDiff to update a list of entities, we can only do this in a loop. Is it efficient, given that each graph is loaded...