├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── stale.yml └── workflows │ ├── merge-dependabot.yml │ └── on-push-do-docs.yml ├── .gitignore ├── code_of_conduct.md ├── docs ├── intro.include.md ├── zzz.include.md └── zzz.png ├── license.txt ├── readme.md └── src ├── .editorconfig ├── .gitattributes ├── Directory.Build.props ├── Directory.Packages.props ├── Shared.sln.DotSettings ├── Verify.EntityFramework.Tests ├── CoreTests.Added.verified.txt ├── CoreTests.AllData.verified.txt ├── CoreTests.Deleted.verified.txt ├── CoreTests.IgnoreNavigationProperties.verified.txt ├── CoreTests.IgnoreNavigationPropertiesExplicit.verified.txt ├── CoreTests.MissingOrderBy.verified.txt ├── CoreTests.Modified.verified.txt ├── CoreTests.MultiDbContexts.verified.txt ├── CoreTests.MultiRecording.verified.txt ├── CoreTests.NestedMissingOrderBy.verified.txt ├── CoreTests.NestedQueryable.verified.txt ├── CoreTests.Parameters.verified.txt ├── CoreTests.Queryable.verified.sql ├── CoreTests.Queryable.verified.txt ├── CoreTests.RecordingDisabledTest.verified.txt ├── CoreTests.RecordingSpecific.verified.txt ├── CoreTests.RecordingTest.verified.txt ├── CoreTests.RecordingWebApplicationFactory.verified.txt ├── CoreTests.RecordingWebApplicationFactory9.verified.txt ├── CoreTests.RecordingWebApplicationFactory_run=0.verified.txt ├── CoreTests.RecordingWebApplicationFactory_run=1.verified.txt ├── CoreTests.RecordingWebApplicationFactory_run=2.verified.txt ├── CoreTests.RecordingWebApplicationFactory_run=3.verified.txt ├── CoreTests.RecordingWebApplicationFactory_run=4.verified.txt ├── CoreTests.ScrubInlineEfDateTimes.verified.txt ├── CoreTests.ScrubInlineEfDateTimesFluent.verified.txt ├── CoreTests.SetSelect.verified.sql ├── CoreTests.SetSelect.verified.txt ├── CoreTests.ShouldIgnoreDbContext.verified.txt ├── CoreTests.ShouldIgnoreDbFactory.verified.txt ├── CoreTests.ShouldIgnoreDbFactoryInterface.verified.txt ├── CoreTests.SingleMissingOrder.verified.txt ├── CoreTests.SomePropsModified.verified.txt ├── CoreTests.UpdateEntity.verified.txt ├── CoreTests.WithNavigationProp.verified.txt ├── CoreTests.WithNestedOrderBy.verified.txt ├── CoreTests.WithOrderBy.verified.txt ├── CoreTests.cs ├── DbUpdateExceptionTests.Run.verified.txt ├── DbUpdateExceptionTests.cs ├── GlobalUsings.cs ├── ModuleInitializer.cs ├── Snippets │ ├── DataContext │ │ ├── Company.cs │ │ ├── Employee.cs │ │ └── SampleDbContext.cs │ └── DbContextBuilder.cs └── Verify.EntityFramework.Tests.csproj ├── Verify.EntityFramework.slnx ├── Verify.EntityFramework.slnx.DotSettings ├── Verify.EntityFramework ├── Converters │ ├── DbUpdateExceptionConverter.cs │ ├── LogEntryConverter.cs │ ├── QueryableConverter.cs │ └── TrackerConverter.cs ├── Extensions.cs ├── GlobalUsings.cs ├── LogCommandInterceptor.cs ├── LogData.cs ├── MissingOrder │ ├── MissingOrderByVisitor.cs │ ├── RelationalFactory.cs │ └── RelationalVisitor.cs ├── RemoveSquareBracketVisitor.cs ├── SqlFormatter.cs ├── Verify.EntityFramework.csproj └── VerifyEntityFramework.cs ├── Verify.EntityFrameworkClassic.Tests ├── ClassicTests.Added.verified.txt ├── ClassicTests.Deleted.verified.txt ├── ClassicTests.Modified.verified.txt ├── ClassicTests.Queryable.verified.txt ├── ClassicTests.UpdateEntity.verified.txt ├── ClassicTests.WithNavigationProp.verified.txt ├── ClassicTests.cs ├── GlobalUsings.cs ├── ModuleInitializer.cs ├── Snippets │ ├── DataContext │ │ ├── Company.cs │ │ ├── Employee.cs │ │ └── SampleDbContext.cs │ └── DbContextBuilder.cs └── Verify.EntityFrameworkClassic.Tests.csproj ├── Verify.EntityFrameworkClassic ├── ChangePair.cs ├── Converters │ ├── QueryableConverter.cs │ └── TrackerConverter.cs ├── Extensions.cs ├── GlobalUsings.cs ├── QueryableSerializer.cs ├── Verify.EntityFrameworkClassic.csproj └── VerifyEntityFrameworkClassic.cs ├── appveyor.yml ├── global.json ├── icon.png ├── key.snk ├── mdsnippets.json ├── nuget.config └── nuget.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: VerifyTests 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/workflows/merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/on-push-do-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.github/workflows/on-push-do-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docs/intro.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/docs/intro.include.md -------------------------------------------------------------------------------- /docs/zzz.include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/docs/zzz.include.md -------------------------------------------------------------------------------- /docs/zzz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/docs/zzz.png -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/readme.md -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/.gitattributes -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/Shared.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Shared.sln.DotSettings -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Added.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Added.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.AllData.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.AllData.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Deleted.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Deleted.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.IgnoreNavigationProperties.verified.txt: -------------------------------------------------------------------------------- 1 | { 2 | Name: employee 3 | } -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.IgnoreNavigationPropertiesExplicit.verified.txt: -------------------------------------------------------------------------------- 1 | { 2 | Name: employee 3 | } -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.MissingOrderBy.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.MissingOrderBy.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Modified.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Modified.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.MultiDbContexts.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.MultiDbContexts.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.MultiRecording.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.MultiRecording.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.NestedMissingOrderBy.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.NestedMissingOrderBy.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.NestedQueryable.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.NestedQueryable.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Parameters.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Parameters.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Queryable.verified.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Queryable.verified.sql -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.Queryable.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.Queryable.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingDisabledTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingDisabledTest.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingSpecific.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingSpecific.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingTest.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingTest.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory9.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory9.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=0.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=0.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=1.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=1.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=2.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=2.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=3.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=3.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=4.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.RecordingWebApplicationFactory_run=4.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.ScrubInlineEfDateTimes.verified.txt: -------------------------------------------------------------------------------- 1 | DateTime_1 -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.ScrubInlineEfDateTimesFluent.verified.txt: -------------------------------------------------------------------------------- 1 | DateTime_1 -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.SetSelect.verified.sql: -------------------------------------------------------------------------------- 1 | SELECT [c].[Id] 2 | FROM [Companies] AS [c] -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.SetSelect.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.SetSelect.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.ShouldIgnoreDbContext.verified.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.ShouldIgnoreDbFactory.verified.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.ShouldIgnoreDbFactoryInterface.verified.txt: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.SingleMissingOrder.verified.txt: -------------------------------------------------------------------------------- 1 | { 2 | Id: 1, 3 | Name: Company1 4 | } -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.SomePropsModified.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.SomePropsModified.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.UpdateEntity.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.UpdateEntity.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.WithNavigationProp.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.WithNavigationProp.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.WithNestedOrderBy.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.WithNestedOrderBy.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.WithOrderBy.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.WithOrderBy.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/CoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/CoreTests.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/DbUpdateExceptionTests.Run.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/DbUpdateExceptionTests.Run.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/DbUpdateExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/DbUpdateExceptionTests.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/Snippets/DataContext/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/Snippets/DataContext/Company.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/Snippets/DataContext/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/Snippets/DataContext/Employee.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/Snippets/DataContext/SampleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/Snippets/DataContext/SampleDbContext.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/Snippets/DbContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/Snippets/DbContextBuilder.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework.Tests/Verify.EntityFramework.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.Tests/Verify.EntityFramework.Tests.csproj -------------------------------------------------------------------------------- /src/Verify.EntityFramework.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.slnx -------------------------------------------------------------------------------- /src/Verify.EntityFramework.slnx.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework.slnx.DotSettings -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Converters/DbUpdateExceptionConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Converters/DbUpdateExceptionConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Converters/LogEntryConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Converters/LogEntryConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Converters/QueryableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Converters/QueryableConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Converters/TrackerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Converters/TrackerConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Extensions.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/LogCommandInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/LogCommandInterceptor.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/LogData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/LogData.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/MissingOrder/MissingOrderByVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/MissingOrder/MissingOrderByVisitor.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/MissingOrder/RelationalFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/MissingOrder/RelationalFactory.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/MissingOrder/RelationalVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/MissingOrder/RelationalVisitor.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/RemoveSquareBracketVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/RemoveSquareBracketVisitor.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/SqlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/SqlFormatter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFramework/Verify.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/Verify.EntityFramework.csproj -------------------------------------------------------------------------------- /src/Verify.EntityFramework/VerifyEntityFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFramework/VerifyEntityFramework.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Added.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Added.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Deleted.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Deleted.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Modified.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Modified.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Queryable.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.Queryable.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.UpdateEntity.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.UpdateEntity.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.WithNavigationProp.verified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.WithNavigationProp.verified.txt -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ClassicTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ClassicTests.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/ModuleInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/ModuleInitializer.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/Company.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/Employee.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/SampleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/Snippets/DataContext/SampleDbContext.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/Snippets/DbContextBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/Snippets/DbContextBuilder.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic.Tests/Verify.EntityFrameworkClassic.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic.Tests/Verify.EntityFrameworkClassic.Tests.csproj -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/ChangePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/ChangePair.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/Converters/QueryableConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/Converters/QueryableConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/Converters/TrackerConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/Converters/TrackerConverter.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/Extensions.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/GlobalUsings.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/QueryableSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/QueryableSerializer.cs -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/Verify.EntityFrameworkClassic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/Verify.EntityFrameworkClassic.csproj -------------------------------------------------------------------------------- /src/Verify.EntityFrameworkClassic/VerifyEntityFrameworkClassic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/Verify.EntityFrameworkClassic/VerifyEntityFrameworkClassic.cs -------------------------------------------------------------------------------- /src/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/appveyor.yml -------------------------------------------------------------------------------- /src/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/global.json -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/key.snk -------------------------------------------------------------------------------- /src/mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/mdsnippets.json -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VerifyTests/Verify.EntityFramework/HEAD/src/nuget.md --------------------------------------------------------------------------------