├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE.md ├── .gitignore ├── GraphDiff ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── .vs │ └── GraphDiff │ │ └── v15 │ │ └── sqlite3 │ │ └── storage.ide ├── GraphDiff.NetStandard21 │ └── GraphDiff.NetStandard21.csproj ├── GraphDiff.Shared │ ├── DbContextExtensions.cs │ ├── GraphDiff.Shared.projitems │ ├── GraphDiff.Shared.shproj │ ├── GraphDiffConfiguration.cs │ ├── IUpdateConfiguration.cs │ └── Internal │ │ ├── ConfigurationVisitor.cs │ │ ├── DebugExtensions.cs │ │ ├── Extensions.cs │ │ ├── Graph │ │ ├── AssociatedEntityGraphNode.cs │ │ ├── CollectionGraphNode.cs │ │ ├── GraphNode.cs │ │ └── OwnedEntityGraphNode.cs │ │ └── GraphDiffer.cs ├── GraphDiff.Tests.NetStandard21 │ └── GraphDiff.Tests.NetStandard21.csproj ├── GraphDiff.Tests.Shared │ ├── Bootstrapper.cs │ ├── GraphDiff.Tests.Shared.projitems │ ├── GraphDiff.Tests.Shared.shproj │ ├── Models │ │ └── TestModels.cs │ ├── TestBase.cs │ ├── TestDbContext.cs │ └── Tests │ │ ├── AddAggregateBehaviours.cs │ │ ├── AssociatedCollectionBehaviours.cs │ │ ├── AssociatedEntityBehaviours.cs │ │ ├── AttachedBehaviours.cs │ │ ├── ConfigurationVisitorBehaviours.cs │ │ ├── ErrorHandlingBehaviours.cs │ │ ├── GuidKeyBehaviors.cs │ │ ├── MiscBehaviours.cs │ │ ├── OneMemberBehaviours.cs │ │ ├── OptimisticConcurrencyBehaviours.cs │ │ ├── OwnedCollectionBehaviours.cs │ │ ├── OwnedEntityBehaviours.cs │ │ └── ThirdTierBehaviours.cs ├── GraphDiff.Tests │ ├── App.config │ ├── GraphDiff.Tests.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── GraphDiff.sln ├── GraphDiff │ ├── GraphDiff.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── RefactorThis.GraphDiff.nuspec └── Z.EntityFrameworkGraphDiff.labEF6 │ ├── My.cs │ ├── Program.cs │ ├── Request_LazyLoad.cs │ ├── Request_ManyNav.cs │ ├── Template.cs │ └── Z.EntityFrameworkGraphDiff.labEF6.csproj ├── LICENSE ├── README.md ├── dapper-plus-sponsor.png ├── docs ├── 404.md ├── CNAME ├── _config.yml ├── _data │ └── meta.csv ├── _includes │ ├── _global_variable.html │ ├── aside.html │ ├── infozzzprojects-email.html │ ├── layout-angle-begin.html │ ├── layout-angle-end.html │ ├── site-footer.html │ ├── site-header-nav-context.html │ ├── site-header-nav-md.html │ ├── site-header-nav-site.html │ ├── site-products.html │ ├── template-example.html │ ├── template-exception-cause.html │ ├── template-exception.html │ ├── template-execute-thrown.html │ ├── template-h1.html │ └── under-construction.html ├── _layouts │ └── default.html ├── _sass │ ├── card-layout-z1.scss │ ├── card-layout-z2.scss │ ├── console.scss │ ├── hero.scss │ ├── highlight.scss │ ├── highlight2.scss │ ├── page-index.scss │ ├── scroll-to-top.scss │ ├── section-faq.scss │ ├── site-footer.scss │ ├── site-header-nav-context.scss │ ├── site-header-nav-md.scss │ ├── site-header-nav-site.scss │ ├── site-header.scss │ └── site-products.scss ├── css │ └── master.scss ├── images │ ├── arrow-down1.png │ ├── logo.png │ ├── logo256X256-opacity.png │ └── logo256X256.png ├── index.md ├── pages │ ├── api │ │ └── api.md │ ├── faq │ │ ├── faq-general.md │ │ ├── faq-installation.md │ │ ├── faq.md │ │ └── issue-tracker.md │ ├── problems │ │ └── problems.md │ ├── site │ │ ├── contact-us.md │ │ └── download.md │ ├── tutorials.md │ └── tutorials │ │ ├── detach-aggregated-entity.md │ │ ├── detach-associated-entity.md │ │ ├── detach-owned-entity.md │ │ ├── detach-single-entity.md │ │ ├── installing.md │ │ ├── overview.md │ │ ├── requirements.md │ │ └── upgrading.md └── robots.txt └── entity-framework-extensions-sponsor.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/.gitignore -------------------------------------------------------------------------------- /GraphDiff/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/.nuget/NuGet.Config -------------------------------------------------------------------------------- /GraphDiff/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/.nuget/NuGet.exe -------------------------------------------------------------------------------- /GraphDiff/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/.nuget/NuGet.targets -------------------------------------------------------------------------------- /GraphDiff/.vs/GraphDiff/v15/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/.vs/GraphDiff/v15/sqlite3/storage.ide -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.NetStandard21/GraphDiff.NetStandard21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.NetStandard21/GraphDiff.NetStandard21.csproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/DbContextExtensions.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/GraphDiff.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/GraphDiff.Shared.projitems -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/GraphDiff.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/GraphDiff.Shared.shproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/GraphDiffConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/GraphDiffConfiguration.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/IUpdateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/IUpdateConfiguration.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/ConfigurationVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/ConfigurationVisitor.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/DebugExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/DebugExtensions.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/Extensions.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/Graph/AssociatedEntityGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/Graph/AssociatedEntityGraphNode.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/Graph/CollectionGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/Graph/CollectionGraphNode.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/Graph/GraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/Graph/GraphNode.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/Graph/OwnedEntityGraphNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/Graph/OwnedEntityGraphNode.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Shared/Internal/GraphDiffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Shared/Internal/GraphDiffer.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.NetStandard21/GraphDiff.Tests.NetStandard21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.NetStandard21/GraphDiff.Tests.NetStandard21.csproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Bootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Bootstrapper.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/GraphDiff.Tests.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/GraphDiff.Tests.Shared.projitems -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/GraphDiff.Tests.Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/GraphDiff.Tests.Shared.shproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Models/TestModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Models/TestModels.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/TestBase.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/TestDbContext.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/AddAggregateBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/AddAggregateBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/AssociatedCollectionBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/AssociatedCollectionBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/AssociatedEntityBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/AssociatedEntityBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/AttachedBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/AttachedBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/ConfigurationVisitorBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/ConfigurationVisitorBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/ErrorHandlingBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/ErrorHandlingBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/GuidKeyBehaviors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/GuidKeyBehaviors.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/MiscBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/MiscBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/OneMemberBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/OneMemberBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/OptimisticConcurrencyBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/OptimisticConcurrencyBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/OwnedCollectionBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/OwnedCollectionBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/OwnedEntityBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/OwnedEntityBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests.Shared/Tests/ThirdTierBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests.Shared/Tests/ThirdTierBehaviours.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests/App.config -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests/GraphDiff.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests/GraphDiff.Tests.csproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.Tests/packages.config -------------------------------------------------------------------------------- /GraphDiff/GraphDiff.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff.sln -------------------------------------------------------------------------------- /GraphDiff/GraphDiff/GraphDiff.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff/GraphDiff.csproj -------------------------------------------------------------------------------- /GraphDiff/GraphDiff/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /GraphDiff/GraphDiff/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/GraphDiff/packages.config -------------------------------------------------------------------------------- /GraphDiff/RefactorThis.GraphDiff.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/RefactorThis.GraphDiff.nuspec -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/My.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/My.cs -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Program.cs -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Request_LazyLoad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Request_LazyLoad.cs -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Request_ManyNav.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Request_ManyNav.cs -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Template.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Template.cs -------------------------------------------------------------------------------- /GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Z.EntityFrameworkGraphDiff.labEF6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/GraphDiff/Z.EntityFrameworkGraphDiff.labEF6/Z.EntityFrameworkGraphDiff.labEF6.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/README.md -------------------------------------------------------------------------------- /dapper-plus-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/dapper-plus-sponsor.png -------------------------------------------------------------------------------- /docs/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/404.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | entityframework-graphdiff.net -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/meta.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_data/meta.csv -------------------------------------------------------------------------------- /docs/_includes/_global_variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/_global_variable.html -------------------------------------------------------------------------------- /docs/_includes/aside.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/aside.html -------------------------------------------------------------------------------- /docs/_includes/infozzzprojects-email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/infozzzprojects-email.html -------------------------------------------------------------------------------- /docs/_includes/layout-angle-begin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/layout-angle-begin.html -------------------------------------------------------------------------------- /docs/_includes/layout-angle-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/layout-angle-end.html -------------------------------------------------------------------------------- /docs/_includes/site-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/site-footer.html -------------------------------------------------------------------------------- /docs/_includes/site-header-nav-context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/site-header-nav-context.html -------------------------------------------------------------------------------- /docs/_includes/site-header-nav-md.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/site-header-nav-md.html -------------------------------------------------------------------------------- /docs/_includes/site-header-nav-site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/site-header-nav-site.html -------------------------------------------------------------------------------- /docs/_includes/site-products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/site-products.html -------------------------------------------------------------------------------- /docs/_includes/template-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/template-example.html -------------------------------------------------------------------------------- /docs/_includes/template-exception-cause.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/template-exception-cause.html -------------------------------------------------------------------------------- /docs/_includes/template-exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/template-exception.html -------------------------------------------------------------------------------- /docs/_includes/template-execute-thrown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/template-execute-thrown.html -------------------------------------------------------------------------------- /docs/_includes/template-h1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/template-h1.html -------------------------------------------------------------------------------- /docs/_includes/under-construction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_includes/under-construction.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_sass/card-layout-z1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/card-layout-z1.scss -------------------------------------------------------------------------------- /docs/_sass/card-layout-z2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/card-layout-z2.scss -------------------------------------------------------------------------------- /docs/_sass/console.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/console.scss -------------------------------------------------------------------------------- /docs/_sass/hero.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/hero.scss -------------------------------------------------------------------------------- /docs/_sass/highlight.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/highlight.scss -------------------------------------------------------------------------------- /docs/_sass/highlight2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/highlight2.scss -------------------------------------------------------------------------------- /docs/_sass/page-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/page-index.scss -------------------------------------------------------------------------------- /docs/_sass/scroll-to-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/scroll-to-top.scss -------------------------------------------------------------------------------- /docs/_sass/section-faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/section-faq.scss -------------------------------------------------------------------------------- /docs/_sass/site-footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-footer.scss -------------------------------------------------------------------------------- /docs/_sass/site-header-nav-context.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-header-nav-context.scss -------------------------------------------------------------------------------- /docs/_sass/site-header-nav-md.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-header-nav-md.scss -------------------------------------------------------------------------------- /docs/_sass/site-header-nav-site.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-header-nav-site.scss -------------------------------------------------------------------------------- /docs/_sass/site-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-header.scss -------------------------------------------------------------------------------- /docs/_sass/site-products.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/_sass/site-products.scss -------------------------------------------------------------------------------- /docs/css/master.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/css/master.scss -------------------------------------------------------------------------------- /docs/images/arrow-down1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/images/arrow-down1.png -------------------------------------------------------------------------------- /docs/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/images/logo.png -------------------------------------------------------------------------------- /docs/images/logo256X256-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/images/logo256X256-opacity.png -------------------------------------------------------------------------------- /docs/images/logo256X256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/images/logo256X256.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/pages/api/api.md: -------------------------------------------------------------------------------- 1 | --- 2 | permalink: api 3 | --- 4 | -------------------------------------------------------------------------------- /docs/pages/faq/faq-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/faq/faq-general.md -------------------------------------------------------------------------------- /docs/pages/faq/faq-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/faq/faq-installation.md -------------------------------------------------------------------------------- /docs/pages/faq/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/faq/faq.md -------------------------------------------------------------------------------- /docs/pages/faq/issue-tracker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/faq/issue-tracker.md -------------------------------------------------------------------------------- /docs/pages/problems/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/problems/problems.md -------------------------------------------------------------------------------- /docs/pages/site/contact-us.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/site/contact-us.md -------------------------------------------------------------------------------- /docs/pages/site/download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/site/download.md -------------------------------------------------------------------------------- /docs/pages/tutorials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials.md -------------------------------------------------------------------------------- /docs/pages/tutorials/detach-aggregated-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/detach-aggregated-entity.md -------------------------------------------------------------------------------- /docs/pages/tutorials/detach-associated-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/detach-associated-entity.md -------------------------------------------------------------------------------- /docs/pages/tutorials/detach-owned-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/detach-owned-entity.md -------------------------------------------------------------------------------- /docs/pages/tutorials/detach-single-entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/detach-single-entity.md -------------------------------------------------------------------------------- /docs/pages/tutorials/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/installing.md -------------------------------------------------------------------------------- /docs/pages/tutorials/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/overview.md -------------------------------------------------------------------------------- /docs/pages/tutorials/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/requirements.md -------------------------------------------------------------------------------- /docs/pages/tutorials/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/pages/tutorials/upgrading.md -------------------------------------------------------------------------------- /docs/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/docs/robots.txt -------------------------------------------------------------------------------- /entity-framework-extensions-sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzzprojects/GraphDiff/HEAD/entity-framework-extensions-sponsor.png --------------------------------------------------------------------------------