GraphDiff
GraphDiff copied to clipboard
GraphDiff is a library that allows the automatic update of a detached graph using Entity Framework code first.
Hi, I have the following model: ``` public class Person { public Person() { Id = Guid.NewGuid(); WorkItems = new List(); } public Guid Id { get; set; } public...
I have the following model: ``` public class Address { public int Id {get; set;} public string Street {get; set;} public int PostCodeId {get; set;} public PostCode PostCode {get; set;}...
We need to create a new project and port this code to EFCore. I don't think it will be that compllicated. But I believe that EFCore is the way forward....
How long it will take to support EF Core 1.0? Thanks
After a cursory look at the open issues, it does not look like this one has been submitted. I have a simple model consisting of Book and Author objects. There...
Hello, Maybe someone can help me with this one... ### Description I'm testing GraphDiff to circumvent the lack of support for detached graph updates in Entity Framework. I have 3...
For synchronisation purpose sometimes we add a GUID column with an unique constraint but keep an autoinc int PKEY for regular work (avoiding fragmentation, unreadable keys,...). If we could specify...
[How can I prevent GraphDiff from removing missing children in the object graph?](http://stackoverflow.com/questions/25468499/how-can-i-prevent-graphdiff-from-removing-missing-children-in-the-object-graph) I think we can quite easily add a config for this.
I'm trying to update a graph where the child is just for linking to the grandchild, however the child is inserted with only NULL values leaving the grandchild unlinked. How...
I downloaded the .zip file but can't build it. Nor is there any "zzzproject.pfx" in /GraphDiff/GraphDiff/GraphDiff Did someone commit something they did not need to? 1>C:\Program Files (x86)\MSBuild\14.0\bin\Microsoft.Common.CurrentVersion.targets(2884,5): error MSB3322:...