├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ ├── docs.yml │ └── publish.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Packages.props ├── EFCore.ChangeTriggers.sln ├── LICENSE ├── README.md ├── docs ├── .devcontainer │ └── devcontainer.json ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── _sass │ └── custom │ │ └── setup.scss ├── change-event-queries │ ├── configuration │ │ ├── configuration-per-query.md │ │ ├── configuration-through-dbcontext.md │ │ └── index.md │ ├── getting-started.md │ └── index.md ├── commands.txt ├── configuration │ ├── index.md │ ├── tracking-what-made-changes │ │ ├── index.md │ │ └── migrations.md │ ├── tracking-who-made-changes │ │ ├── index.md │ │ └── migrations.md │ └── trigger-name.md ├── getting-started.md ├── images │ └── Example1.png └── index.md ├── global.json ├── samples └── A_AspNetCore │ ├── A_AspNetCore.sln │ └── A_AspNetCore │ ├── A_AspNetCore.csproj │ ├── Data │ └── SampleDbContext.cs │ ├── Migrations │ ├── 20241024230107_Initial.Designer.cs │ ├── 20241024230107_Initial.cs │ ├── 20241024232254_ChangeTriggers.Designer.cs │ ├── 20241024232254_ChangeTriggers.cs │ ├── 20241025113237_SeedData.Designer.cs │ ├── 20241025113237_SeedData.cs │ └── SampleDbContextModelSnapshot.cs │ ├── Models │ ├── ChangeSource.cs │ ├── Roles │ │ ├── BaseRole.cs │ │ ├── Role.cs │ │ └── RoleChange.cs │ └── Users │ │ ├── BaseUser.cs │ │ ├── User.cs │ │ └── UserChange.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Roles │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Details.cshtml │ │ ├── Details.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ └── _ValidationScriptsPartial.cshtml │ ├── Users │ │ ├── Create.cshtml │ │ ├── Create.cshtml.cs │ │ ├── Delete.cshtml │ │ ├── Delete.cshtml.cs │ │ ├── Details.cshtml │ │ ├── Details.cshtml.cs │ │ ├── Edit.cshtml │ │ ├── Edit.cshtml.cs │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json │ ├── SampleChangeSourceProvider.cs │ ├── SampleChangedByProvider.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── src ├── EFCore.ChangeTriggers.ChangeEventQueries │ ├── Builders │ │ ├── AssemblyConfigurationBuilder.cs │ │ ├── BaseQueryBuilder.cs │ │ ├── IAssemblyConfigurationBuilder.cs │ │ ├── OperationTypeBuilders │ │ │ ├── BaseOperationTypeQueryBuilder.cs │ │ │ ├── ChangeSourceOperationTypeQueryBuilder.cs │ │ │ ├── ChangedByOperationTypeQueryBuilder.cs │ │ │ ├── IOperationTypeQueryBuilder.cs │ │ │ ├── OperationTypeQueryBuilder.cs │ │ │ └── OperationTypeQueryBuilder``.cs │ │ ├── PropertyBuilders │ │ │ ├── BasePropertyQueryBuilder.cs │ │ │ ├── ChangeSourcePropertyQueryBuilder.cs │ │ │ ├── ChangedByPropertyQueryBuilder.cs │ │ │ ├── IPropertyQueryBuilder.cs │ │ │ ├── PropertyQueryBuilder.cs │ │ │ └── PropertyQueryBuilder``.cs │ │ └── RootQueryBuilders │ │ │ ├── BaseRootQueryBuilder.cs │ │ │ ├── ChangeSourceRootQueryBuilder.cs │ │ │ ├── ChangedByRootQueryBuilder.cs │ │ │ ├── RootQueryBuilder.cs │ │ │ └── RootQueryBuilder``.cs │ ├── ChangeEvent.cs │ ├── ChangePair.cs │ ├── Configuration │ │ ├── Builders │ │ │ ├── ChangeEventConfigurationBuilder.cs │ │ │ ├── ChangeEventEntityConfigurationBuilder.cs │ │ │ └── ChangeEventEntityPropertyConfigurationBuilder.cs │ │ ├── ChangeEventConfiguration.cs │ │ ├── ChangeEventEntityConfiguration.cs │ │ ├── ChangeEventEntityPropertyConfiguration.cs │ │ └── IChangeEventEntityConfiguration.cs │ ├── DbContextAwareEntityQueryProvider.cs │ ├── EFCore.ChangeTriggers.ChangeEventQueries.csproj │ ├── Exceptions │ │ ├── ChangeEventConfigurationException.cs │ │ ├── ChangeEventQueryException.cs │ │ └── ExceptionStrings.cs │ ├── Extensions │ │ ├── DbContextOptionsBuilderExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── IQueryableExtensions.cs │ │ ├── IQueryableExtensionsInternal.cs │ │ └── LambdaExpressionExtensions.cs │ ├── Infrastructure │ │ ├── ChangeEventsDbContextOptionsBuilder.cs │ │ ├── ChangeEventsDbContextOptionsExtension.cs │ │ └── ChangeEventsDbContextOptionsExtensionInfo.cs │ ├── ParameterReplaceVisitor.cs │ └── README.md ├── EFCore.ChangeTriggers.SqlServer │ ├── EFCore.ChangeTriggers.SqlServer.csproj │ ├── Extensions │ │ ├── DbConnectionExtensions.cs │ │ └── DbContextOptionsBuilderExtensions.cs │ ├── Infrastructure │ │ ├── ChangeTriggersSqlServerDbContextOptionsBuilder.cs │ │ ├── ChangeTriggersSqlServerDbContextOptionsExtension.cs │ │ └── ChangeTriggersSqlServerDbContextOptionsExtensionInfo.cs │ ├── Interceptors │ │ ├── ChangeSourceSqlServerDbConnectionInterceptor.cs │ │ └── ChangedBySqlServerDbConnectionInterceptor.cs │ ├── Migrations │ │ └── ChangeTriggersSqlServerMigrationsSqlGenerator.cs │ ├── SqlConstants.cs │ └── Templates │ │ ├── ChangeConfig.cs │ │ └── CreateChangeTriggerSqlTemplate.sql └── EFCore.ChangeTriggers │ ├── Abstractions │ ├── ChangeSourceProvider.cs │ ├── ChangedByProvider.cs │ ├── IChange.cs │ ├── IChangeSourceProvider.cs │ ├── IChange`.cs │ ├── IChangedByProvider.cs │ ├── IHasChangeSource.cs │ ├── IHasChangedBy.cs │ ├── IHasTrackedEntity.cs │ └── ITracked.cs │ ├── Assembly.cs │ ├── ChangeTriggersDesignTimeServices.cs │ ├── ChangeTriggersModelCustomizer.cs │ ├── Configuration │ └── ChangeTriggerOptions.cs │ ├── Constants │ ├── AnnotationConstants.cs │ ├── ChangeContextConstants.cs │ └── ChangeTriggerDefaults.cs │ ├── EFCore.ChangeTriggers.csproj │ ├── Exceptions │ ├── ChangeTriggersConfigurationException.cs │ ├── ChangeTriggersException.cs │ └── ExceptionStrings.cs │ ├── Extensions │ ├── DbContextOptionsBuilderExtensions.cs │ └── ModelBuilderExtensions.cs │ ├── Helpers │ └── TriggerNameFormatHelper.cs │ ├── Infrastructure │ ├── ChangeTriggersDbContextOptionsBuilder.cs │ ├── ChangeTriggersDbContextOptionsExtension.cs │ ├── ChangeTriggersDbContextOptionsExtensionInfo.cs │ └── ChangeTriggersExtensionContext.cs │ ├── Interceptors │ ├── BaseChangeSourceDbConnectionInterceptor.cs │ └── BaseChangedByDbConnectionInterceptor.cs │ ├── Metadata │ ├── Builders │ │ ├── ChangeTableBuilder.cs │ │ ├── EntityTypeBuilderExtensions.cs │ │ ├── EntityTypeBuilderExtensionsInternal.cs │ │ ├── PropertyBuilderExtensions.cs │ │ └── ReferenceCollectionBuilderExtensions.cs │ ├── EntityTypeExtensions.cs │ ├── ForeignKeyExtensions.cs │ ├── ModelExtensions.cs │ └── PropertyExtensions.cs │ ├── Migrations │ ├── ChangeTriggersMigrationsModelDiffer.cs │ ├── ChangeTriggersMigrator.cs │ ├── Design │ │ ├── ChangeTriggersCSharpMigrationOperationGenerator.cs │ │ └── ChangeTriggersCSharpMigrationsGenerator.cs │ ├── Models │ │ ├── ChangeTrackedEntity.cs │ │ └── ChangeTrigger.cs │ └── Operations │ │ ├── ChangeContextColumn.cs │ │ ├── CreateChangeTriggerOperation.cs │ │ ├── DropChangeTriggerOperation.cs │ │ ├── Generators │ │ ├── BaseSetChangeContextOperationGenerator.cs │ │ ├── ChangeSourceSetChangeContextOperationGenerator.cs │ │ ├── ChangedBySetChangeContextOperationGenerator.cs │ │ └── ISetChangeContextOperationGenerator.cs │ │ ├── MigrationBuilderExtensions.cs │ │ ├── NoCheckConstraintOperation.cs │ │ └── SetChangeContextOperation.cs │ ├── OperationType.cs │ └── _.cs └── tests ├── EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration ├── Configuration │ ├── ChangeSourceEntityUserChangeEventConfiguration.cs │ ├── ChangeSourceScalarUserChangeEventConfiguration.cs │ ├── ChangedByEntityUserChangeEventConfiguration.cs │ ├── ChangedByScalarUserChangeEventConfiguration.cs │ ├── UserChangeChangeEventConfiguration`.cs │ └── UserChangeEventConfiguration.cs ├── Design │ ├── ChangeSourceEntityDbContextFactory.cs │ ├── ChangeSourceScalarDbContextFactory.cs │ ├── ChangedByEntityDbContextFactory.cs │ ├── ChangedByScalarDbContextFactory.cs │ ├── DesignTimeServices.cs │ └── TestDbContextFactory.cs ├── EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration.csproj ├── Migrations │ ├── ChangeSourceEntity │ │ ├── 20250623225248_Initial.Designer.cs │ │ ├── 20250623225248_Initial.cs │ │ └── ChangeSourceEntityDbContextModelSnapshot.cs │ ├── ChangeSourceScalar │ │ ├── 20250623225253_Initial.Designer.cs │ │ ├── 20250623225253_Initial.cs │ │ └── ChangeSourceScalarDbContextModelSnapshot.cs │ ├── ChangedByEntity │ │ ├── 20250623225239_Initial.Designer.cs │ │ ├── 20250623225239_Initial.cs │ │ └── ChangedByEntityDbContextModelSnapshot.cs │ ├── ChangedByScalar │ │ ├── 20250623225243_Initial.Designer.cs │ │ ├── 20250623225243_Initial.cs │ │ └── ChangedByScalarDbContextModelSnapshot.cs │ └── Test │ │ ├── 20250623225257_Initial.Designer.cs │ │ ├── 20250623225257_Initial.cs │ │ └── TestDbContextModelSnapshot.cs ├── MsSqlContainerFixture.cs ├── Scripts │ ├── ChangeSourceEntity-initial-migration.ps1 │ ├── ChangeSourceScalar-initial-migration.ps1 │ ├── ChangedByEntity-initial-migration.ps1 │ ├── ChangedByScalar-initial-migration.ps1 │ └── TestDbContext-initial-migration.ps1 ├── ServiceCollectionExtensions.cs └── Tests │ ├── ChangeSourceEntity │ ├── Fixtures │ │ └── ToChangeEventsFixture.cs │ └── ToChangeEventsTests.cs │ ├── ChangeSourceScalar │ ├── Fixtures │ │ └── ToChangeEventsFixture.cs │ └── ToChangeEventsTests.cs │ ├── ChangedByEntity │ ├── Fixtures │ │ └── ToChangeEventsFixture.cs │ └── ToChangeEventsTests.cs │ ├── ChangedByScalar │ ├── Fixtures │ │ └── ToChangeEventsFixture.cs │ └── ToChangeEventsTests.cs │ ├── ConfigurationProviderMode.cs │ ├── ConfigurationTests.cs │ ├── Fixtures │ ├── ConfigurationFixture.cs │ └── ToChangeEventsFixture.cs │ ├── ToChangeEventsTestBase.cs │ ├── ToChangeEventsTestParams.cs │ └── ToChangeEventsTests.cs ├── EFCore.ChangeTriggers.SqlServer.Tests.Integration ├── Design │ ├── ChangeSourceEntityDbContextFactory.cs │ ├── ChangeSourceScalarDbContextFactory.cs │ ├── ChangedByEntityDbContextFactory.cs │ ├── ChangedByScalarDbContextFactory.cs │ ├── DesignTimeServices.cs │ └── TestDbContextFactory.cs ├── EFCore.ChangeTriggers.SqlServer.Tests.Integration.csproj ├── Fixtures │ └── MsSqlContainerFixture.cs ├── Scripts │ ├── ChangeSourceEntity-initial-migration.ps1 │ ├── ChangeSourceScalar-initial-migration.ps1 │ ├── ChangedByEntity-initial-migration.ps1 │ ├── ChangedByScalar-initial-migration.ps1 │ └── TestDbContext-initial-migration.ps1 ├── ServiceCollectionExtensions.cs └── Tests │ ├── ChangeSourceEntity │ ├── Fixtures │ │ ├── ChangeSourceEntityFixtureBase.cs │ │ ├── MigrateDatabaseFixture.cs │ │ ├── MigrateDatabaseUsingMigrationChangedByFixture.cs │ │ ├── MutateEntityFixture.cs │ │ └── ScriptMigrationFixture.cs │ ├── MigrateDatabaseTests.cs │ ├── MigrateDatabaseUsingMigrationChangedByTests.cs │ ├── MutateEntityTests.cs │ └── ScriptMigrationTests.cs │ ├── ChangeSourceScalar │ ├── Fixtures │ │ ├── ChangedByScalarFixtureBase.cs │ │ ├── MigrateDatabaseFixture.cs │ │ ├── MigrateDatabaseUsingMigrationChangedByFixture.cs │ │ ├── MutateEntityFixture.cs │ │ └── ScriptMigrationFixture.cs │ ├── MigrateDatabaseTests.cs │ ├── MigrateDatabaseUsingMigrationChangedByTests.cs │ ├── MutateEntityTests.cs │ └── ScriptMigrationTests.cs │ ├── ChangedByEntity │ ├── Fixtures │ │ ├── ChangedByEntityFixtureBase.cs │ │ ├── MigrateDatabaseFixture.cs │ │ ├── MigrateDatabaseUsingMigrationChangedByFixture.cs │ │ ├── MutateEntityFixture.cs │ │ └── ScriptMigrationFixture.cs │ ├── MigrateDatabaseTests.cs │ ├── MigrateDatabaseUsingMigrationChangedByTests.cs │ ├── MutateEntityTests.cs │ └── ScriptMigrationTests.cs │ ├── ChangedByScalar │ ├── Fixtures │ │ ├── ChangedByScalarFixtureBase.cs │ │ ├── MigrateDatabaseFixture.cs │ │ ├── MigrateDatabaseUsingMigrationChangedByFixture.cs │ │ ├── MutateEntityFixture.cs │ │ └── ScriptMigrationFixture.cs │ ├── MigrateDatabaseTests.cs │ ├── MigrateDatabaseUsingMigrationChangedByTests.cs │ ├── MutateEntityTests.cs │ └── ScriptMigrationTests.cs │ ├── Fixtures │ ├── MigrateDatabaseFixture.cs │ ├── MutateEntityFixture.cs │ └── TestFixtureBase.cs │ ├── MigrateDatabaseTests.cs │ └── MutateEntityTests.cs ├── EFCore.ChangeTriggers.Tests.Integration.Common ├── Domain │ ├── ChangeSourceEntity │ │ ├── ChangeSource.cs │ │ ├── ChangeSourceEntityUser.cs │ │ └── ChangeSourceEntityUserChange.cs │ ├── ChangeSourceScalar │ │ ├── ChangeSourceScalarUser.cs │ │ ├── ChangeSourceScalarUserChange.cs │ │ └── ChangeSourceType.cs │ ├── ChangedByEntity │ │ ├── ChangedByEntityUser.cs │ │ └── ChangedByEntityUserChange.cs │ ├── ChangedByScalar │ │ ├── ChangedByScalarUser.cs │ │ └── ChangedByScalarUserChange.cs │ ├── IHasChangeId.cs │ ├── User.cs │ ├── UserBase.cs │ └── UserChange.cs ├── EFCore.ChangeTriggers.Tests.Integration.Common.csproj ├── Fixtures │ ├── DbContainerFixture.cs │ └── DbContextFixture.cs ├── Persistence │ ├── ChangeSourceEntityDbContext.cs │ ├── ChangeSourceScalarDbContext.cs │ ├── ChangedByEntityDbContext.cs │ ├── ChangedByScalarDbContext.cs │ ├── TestDbContext.cs │ └── TestDbContext``.cs ├── Providers │ ├── ChangeSourceEntity │ │ ├── ChangeSourceEntityProvider.cs │ │ └── EntityChangeSourceProvider.cs │ ├── ChangeSourceScalar │ │ ├── ChangeSourceScalarProvider.cs │ │ └── ScalarChangeSourceProvider.cs │ ├── ChangedByEntity │ │ ├── ChangedByEntityProvider.cs │ │ └── EntityCurrentUserProvider.cs │ └── ChangedByScalar │ │ ├── ChangedByScalarProvider.cs │ │ └── ScalarCurrentUserProvider.cs ├── Repositories │ ├── ChangeSourceEntityUserReadRepository.cs │ ├── ChangedByEntityUserReadRepository.cs │ ├── IUserReadRepository.cs │ └── UserReadRepository``.cs ├── Scopes │ ├── ChangeSourceEntityTestScope.cs │ ├── ChangeSourceScalarTestScope.cs │ ├── ChangedByEntityTestScope.cs │ ├── ChangedByScalarTestScope.cs │ ├── TestScope.cs │ └── TestScope``.cs ├── Scripts │ ├── initial-migration.ps1 │ └── readd-all-migrations.ps1 ├── SyncOrAsyncExtensions.cs ├── SyncOrAsyncValue.cs └── Tests │ ├── MigrateDatabaseTestBase.cs │ ├── MutateEntityTestBase.cs │ ├── ScriptMigrationTestBase.cs │ ├── TestBase.cs │ └── UserTestBase.cs └── TestHarness ├── TestHarness.sln └── TestHarness ├── ChangeSourceProvider.cs ├── ChangeSourceType.cs ├── ChangedByProvider.cs ├── Configuration └── UserChangeConfiguration.cs ├── CurrentUserProvider.cs ├── DbModels ├── PaymentMethods │ └── PaymentMethod.cs ├── Permissions │ ├── Permission.cs │ ├── PermissionBase.cs │ └── PermissionChange.cs └── Users │ ├── User.cs │ ├── UserBase.cs │ └── UserChange.cs ├── LinqMarkdownTableExtensions.cs ├── Migrations ├── 20241023153335_Initial.Designer.cs ├── 20241023153335_Initial.cs └── MyDbContextModelSnapshot.cs ├── MyDbContext.cs ├── Program.cs ├── TestChangeQueriesService.cs ├── TestDataService.cs ├── TestHarness.csproj └── appsettings.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /EFCore.ChangeTriggers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/EFCore.ChangeTriggers.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/README.md -------------------------------------------------------------------------------- /docs/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_sass/custom/setup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/_sass/custom/setup.scss -------------------------------------------------------------------------------- /docs/change-event-queries/configuration/configuration-per-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/change-event-queries/configuration/configuration-per-query.md -------------------------------------------------------------------------------- /docs/change-event-queries/configuration/configuration-through-dbcontext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/change-event-queries/configuration/configuration-through-dbcontext.md -------------------------------------------------------------------------------- /docs/change-event-queries/configuration/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/change-event-queries/configuration/index.md -------------------------------------------------------------------------------- /docs/change-event-queries/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/change-event-queries/getting-started.md -------------------------------------------------------------------------------- /docs/change-event-queries/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/change-event-queries/index.md -------------------------------------------------------------------------------- /docs/commands.txt: -------------------------------------------------------------------------------- 1 | bundle exec jekyll serve -------------------------------------------------------------------------------- /docs/configuration/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Configuration 3 | layout: home 4 | nav_order: 2 5 | --- -------------------------------------------------------------------------------- /docs/configuration/tracking-what-made-changes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/configuration/tracking-what-made-changes/index.md -------------------------------------------------------------------------------- /docs/configuration/tracking-what-made-changes/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/configuration/tracking-what-made-changes/migrations.md -------------------------------------------------------------------------------- /docs/configuration/tracking-who-made-changes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/configuration/tracking-who-made-changes/index.md -------------------------------------------------------------------------------- /docs/configuration/tracking-who-made-changes/migrations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/configuration/tracking-who-made-changes/migrations.md -------------------------------------------------------------------------------- /docs/configuration/trigger-name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/configuration/trigger-name.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/images/Example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/images/Example1.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/docs/index.md -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/global.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore.sln -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/A_AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/A_AspNetCore.csproj -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Data/SampleDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Data/SampleDbContext.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241024230107_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241024230107_Initial.Designer.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241024230107_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241024230107_Initial.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241024232254_ChangeTriggers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241024232254_ChangeTriggers.Designer.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241024232254_ChangeTriggers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241024232254_ChangeTriggers.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241025113237_SeedData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241025113237_SeedData.Designer.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/20241025113237_SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/20241025113237_SeedData.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Migrations/SampleDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Migrations/SampleDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/ChangeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/ChangeSource.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Roles/BaseRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Roles/BaseRole.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Roles/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Roles/Role.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Roles/RoleChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Roles/RoleChange.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Users/BaseUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Users/BaseUser.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Users/User.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Models/Users/UserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Models/Users/UserChange.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Error.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Create.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Create.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Delete.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Delete.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Details.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Details.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Edit.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Edit.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Index.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Roles/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Create.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Create.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Delete.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Delete.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Details.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Details.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Edit.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Edit.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Index.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/Users/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/Users/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Program.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/SampleChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/SampleChangeSourceProvider.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/SampleChangedByProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/SampleChangedByProvider.cs -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/appsettings.Development.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/appsettings.json -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/js/site.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/samples/A_AspNetCore/A_AspNetCore/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/AssemblyConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/AssemblyConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/BaseQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/BaseQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/IAssemblyConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/IAssemblyConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/BaseOperationTypeQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/BaseOperationTypeQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/ChangeSourceOperationTypeQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/ChangeSourceOperationTypeQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/ChangedByOperationTypeQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/ChangedByOperationTypeQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/IOperationTypeQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/IOperationTypeQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/OperationTypeQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/OperationTypeQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/OperationTypeQueryBuilder``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/OperationTypeBuilders/OperationTypeQueryBuilder``.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/BasePropertyQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/BasePropertyQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/ChangeSourcePropertyQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/ChangeSourcePropertyQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/ChangedByPropertyQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/ChangedByPropertyQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/IPropertyQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/IPropertyQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/PropertyQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/PropertyQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/PropertyQueryBuilder``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/PropertyBuilders/PropertyQueryBuilder``.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/BaseRootQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/BaseRootQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/ChangeSourceRootQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/ChangeSourceRootQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/ChangedByRootQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/ChangedByRootQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/RootQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/RootQueryBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/RootQueryBuilder``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Builders/RootQueryBuilders/RootQueryBuilder``.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/ChangeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/ChangeEvent.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/ChangePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/ChangePair.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventEntityConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventEntityConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventEntityPropertyConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/Builders/ChangeEventEntityPropertyConfigurationBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventConfiguration.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventEntityConfiguration.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventEntityPropertyConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/ChangeEventEntityPropertyConfiguration.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/IChangeEventEntityConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Configuration/IChangeEventEntityConfiguration.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/DbContextAwareEntityQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/DbContextAwareEntityQueryProvider.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/EFCore.ChangeTriggers.ChangeEventQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/EFCore.ChangeTriggers.ChangeEventQueries.csproj -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ChangeEventConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ChangeEventConfigurationException.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ChangeEventQueryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ChangeEventQueryException.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ExceptionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Exceptions/ExceptionStrings.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/DbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/DbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/IQueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/IQueryableExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/IQueryableExtensionsInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/IQueryableExtensionsInternal.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/LambdaExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Extensions/LambdaExpressionExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/Infrastructure/ChangeEventsDbContextOptionsExtensionInfo.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/ParameterReplaceVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/ParameterReplaceVisitor.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.ChangeEventQueries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.ChangeEventQueries/README.md -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/EFCore.ChangeTriggers.SqlServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/EFCore.ChangeTriggers.SqlServer.csproj -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Extensions/DbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Extensions/DbConnectionExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Extensions/DbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Extensions/DbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Infrastructure/ChangeTriggersSqlServerDbContextOptionsExtensionInfo.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Interceptors/ChangeSourceSqlServerDbConnectionInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Interceptors/ChangeSourceSqlServerDbConnectionInterceptor.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Interceptors/ChangedBySqlServerDbConnectionInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Interceptors/ChangedBySqlServerDbConnectionInterceptor.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Migrations/ChangeTriggersSqlServerMigrationsSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Migrations/ChangeTriggersSqlServerMigrationsSqlGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/SqlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/SqlConstants.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Templates/ChangeConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Templates/ChangeConfig.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers.SqlServer/Templates/CreateChangeTriggerSqlTemplate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers.SqlServer/Templates/CreateChangeTriggerSqlTemplate.sql -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/ChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/ChangeSourceProvider.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/ChangedByProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/ChangedByProvider.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IChange.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IChangeSourceProvider.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IChange`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IChange`.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IChangedByProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IChangedByProvider.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IHasChangeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IHasChangeSource.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IHasChangedBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IHasChangedBy.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/IHasTrackedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/IHasTrackedEntity.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Abstractions/ITracked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Abstractions/ITracked.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Assembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Assembly.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/ChangeTriggersDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/ChangeTriggersDesignTimeServices.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/ChangeTriggersModelCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/ChangeTriggersModelCustomizer.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Configuration/ChangeTriggerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Configuration/ChangeTriggerOptions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Constants/AnnotationConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Constants/AnnotationConstants.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Constants/ChangeContextConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Constants/ChangeContextConstants.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Constants/ChangeTriggerDefaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Constants/ChangeTriggerDefaults.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/EFCore.ChangeTriggers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/EFCore.ChangeTriggers.csproj -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Exceptions/ChangeTriggersConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Exceptions/ChangeTriggersConfigurationException.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Exceptions/ChangeTriggersException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Exceptions/ChangeTriggersException.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Exceptions/ExceptionStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Exceptions/ExceptionStrings.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Extensions/DbContextOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Extensions/DbContextOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Extensions/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Extensions/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Helpers/TriggerNameFormatHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Helpers/TriggerNameFormatHelper.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsExtension.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsExtensionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersDbContextOptionsExtensionInfo.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersExtensionContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Infrastructure/ChangeTriggersExtensionContext.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Interceptors/BaseChangeSourceDbConnectionInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Interceptors/BaseChangeSourceDbConnectionInterceptor.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Interceptors/BaseChangedByDbConnectionInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Interceptors/BaseChangedByDbConnectionInterceptor.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/Builders/ChangeTableBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/Builders/ChangeTableBuilder.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/Builders/EntityTypeBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/Builders/EntityTypeBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/Builders/EntityTypeBuilderExtensionsInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/Builders/EntityTypeBuilderExtensionsInternal.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/Builders/PropertyBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/Builders/PropertyBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/Builders/ReferenceCollectionBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/Builders/ReferenceCollectionBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/EntityTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/EntityTypeExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/ForeignKeyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/ForeignKeyExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/ModelExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Metadata/PropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Metadata/PropertyExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/ChangeTriggersMigrationsModelDiffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/ChangeTriggersMigrationsModelDiffer.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/ChangeTriggersMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/ChangeTriggersMigrator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Design/ChangeTriggersCSharpMigrationOperationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Design/ChangeTriggersCSharpMigrationOperationGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Design/ChangeTriggersCSharpMigrationsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Design/ChangeTriggersCSharpMigrationsGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Models/ChangeTrackedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Models/ChangeTrackedEntity.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Models/ChangeTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Models/ChangeTrigger.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/ChangeContextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/ChangeContextColumn.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/CreateChangeTriggerOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/CreateChangeTriggerOperation.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/DropChangeTriggerOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/DropChangeTriggerOperation.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/Generators/BaseSetChangeContextOperationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/Generators/BaseSetChangeContextOperationGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ChangeSourceSetChangeContextOperationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ChangeSourceSetChangeContextOperationGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ChangedBySetChangeContextOperationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ChangedBySetChangeContextOperationGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ISetChangeContextOperationGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/Generators/ISetChangeContextOperationGenerator.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/MigrationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/MigrationBuilderExtensions.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/NoCheckConstraintOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/NoCheckConstraintOperation.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/Migrations/Operations/SetChangeContextOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/Migrations/Operations/SetChangeContextOperation.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/OperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/OperationType.cs -------------------------------------------------------------------------------- /src/EFCore.ChangeTriggers/_.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/src/EFCore.ChangeTriggers/_.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangeSourceEntityUserChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangeSourceEntityUserChangeEventConfiguration.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangeSourceScalarUserChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangeSourceScalarUserChangeEventConfiguration.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangedByEntityUserChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangedByEntityUserChangeEventConfiguration.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangedByScalarUserChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/ChangedByScalarUserChangeEventConfiguration.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/UserChangeChangeEventConfiguration`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/UserChangeChangeEventConfiguration`.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/UserChangeEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Configuration/UserChangeEventConfiguration.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangeSourceEntityDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangeSourceEntityDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangeSourceScalarDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangeSourceScalarDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangedByEntityDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangedByEntityDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangedByScalarDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/ChangedByScalarDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/DesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/DesignTimeServices.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/TestDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Design/TestDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/20250623225248_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/20250623225248_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/20250623225248_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/20250623225248_Initial.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/ChangeSourceEntityDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceEntity/ChangeSourceEntityDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/20250623225253_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/20250623225253_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/20250623225253_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/20250623225253_Initial.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/ChangeSourceScalarDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangeSourceScalar/ChangeSourceScalarDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/20250623225239_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/20250623225239_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/20250623225239_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/20250623225239_Initial.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/ChangedByEntityDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByEntity/ChangedByEntityDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/20250623225243_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/20250623225243_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/20250623225243_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/20250623225243_Initial.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/ChangedByScalarDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/ChangedByScalar/ChangedByScalarDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/20250623225257_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/20250623225257_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/20250623225257_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/20250623225257_Initial.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/TestDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Migrations/Test/TestDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/MsSqlContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/MsSqlContainerFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangeSourceEntity-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangeSourceEntity-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangeSourceScalar-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangeSourceScalar-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangedByEntity-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangedByEntity-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangedByScalar-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/ChangedByScalar-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/TestDbContext-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Scripts/TestDbContext-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ToChangeEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ToChangeEventsFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceEntity/ToChangeEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceEntity/ToChangeEventsTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ToChangeEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ToChangeEventsFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceScalar/ToChangeEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangeSourceScalar/ToChangeEventsTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByEntity/Fixtures/ToChangeEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByEntity/Fixtures/ToChangeEventsFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByEntity/ToChangeEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByEntity/ToChangeEventsTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByScalar/Fixtures/ToChangeEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByScalar/Fixtures/ToChangeEventsFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByScalar/ToChangeEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ChangedByScalar/ToChangeEventsTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ConfigurationProviderMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ConfigurationProviderMode.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ConfigurationTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/Fixtures/ConfigurationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/Fixtures/ConfigurationFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/Fixtures/ToChangeEventsFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/Fixtures/ToChangeEventsFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTestBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTestParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTestParams.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.ChangeEventQueries.Tests.Integration/Tests/ToChangeEventsTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangeSourceEntityDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangeSourceEntityDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangeSourceScalarDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangeSourceScalarDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangedByEntityDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangedByEntityDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangedByScalarDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/ChangedByScalarDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/DesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/DesignTimeServices.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/TestDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Design/TestDbContextFactory.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/EFCore.ChangeTriggers.SqlServer.Tests.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/EFCore.ChangeTriggers.SqlServer.Tests.Integration.csproj -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Fixtures/MsSqlContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Fixtures/MsSqlContainerFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangeSourceEntity-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangeSourceEntity-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangeSourceScalar-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangeSourceScalar-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangedByEntity-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangedByEntity-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangedByScalar-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/ChangedByScalar-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/TestDbContext-initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Scripts/TestDbContext-initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ChangeSourceEntityFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ChangeSourceEntityFixtureBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MigrateDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MigrateDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MutateEntityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/MutateEntityFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ScriptMigrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/Fixtures/ScriptMigrationFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MigrateDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MigrateDatabaseTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MigrateDatabaseUsingMigrationChangedByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MigrateDatabaseUsingMigrationChangedByTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MutateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/MutateEntityTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/ScriptMigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceEntity/ScriptMigrationTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ChangedByScalarFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ChangedByScalarFixtureBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MigrateDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MigrateDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MutateEntityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/MutateEntityFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ScriptMigrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/Fixtures/ScriptMigrationFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MigrateDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MigrateDatabaseTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MigrateDatabaseUsingMigrationChangedByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MigrateDatabaseUsingMigrationChangedByTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MutateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/MutateEntityTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/ScriptMigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangeSourceScalar/ScriptMigrationTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/ChangedByEntityFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/ChangedByEntityFixtureBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MigrateDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MigrateDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MutateEntityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/MutateEntityFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/ScriptMigrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/Fixtures/ScriptMigrationFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MigrateDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MigrateDatabaseTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MigrateDatabaseUsingMigrationChangedByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MigrateDatabaseUsingMigrationChangedByTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MutateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/MutateEntityTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/ScriptMigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByEntity/ScriptMigrationTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/ChangedByScalarFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/ChangedByScalarFixtureBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MigrateDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MigrateDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MigrateDatabaseUsingMigrationChangedByFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MutateEntityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/MutateEntityFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/ScriptMigrationFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/Fixtures/ScriptMigrationFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MigrateDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MigrateDatabaseTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MigrateDatabaseUsingMigrationChangedByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MigrateDatabaseUsingMigrationChangedByTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MutateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/MutateEntityTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/ScriptMigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/ChangedByScalar/ScriptMigrationTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/MigrateDatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/MigrateDatabaseFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/MutateEntityFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/MutateEntityFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/TestFixtureBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/Fixtures/TestFixtureBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/MigrateDatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/MigrateDatabaseTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/MutateEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/Tests/MutateEntityTests.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSource.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSourceEntityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSourceEntityUser.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSourceEntityUserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceEntity/ChangeSourceEntityUserChange.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceScalarUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceScalarUser.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceScalarUserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceScalarUserChange.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangeSourceScalar/ChangeSourceType.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByEntity/ChangedByEntityUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByEntity/ChangedByEntityUser.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByEntity/ChangedByEntityUserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByEntity/ChangedByEntityUserChange.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByScalar/ChangedByScalarUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByScalar/ChangedByScalarUser.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByScalar/ChangedByScalarUserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/ChangedByScalar/ChangedByScalarUserChange.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/IHasChangeId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/IHasChangeId.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/User.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/UserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/UserBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/UserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Domain/UserChange.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/EFCore.ChangeTriggers.Tests.Integration.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/EFCore.ChangeTriggers.Tests.Integration.Common.csproj -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Fixtures/DbContainerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Fixtures/DbContainerFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Fixtures/DbContextFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Fixtures/DbContextFixture.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangeSourceEntityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangeSourceEntityDbContext.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangeSourceScalarDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangeSourceScalarDbContext.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangedByEntityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangedByEntityDbContext.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangedByScalarDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/ChangedByScalarDbContext.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/TestDbContext.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/TestDbContext``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Persistence/TestDbContext``.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceEntity/ChangeSourceEntityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceEntity/ChangeSourceEntityProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceEntity/EntityChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceEntity/EntityChangeSourceProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceScalar/ChangeSourceScalarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceScalar/ChangeSourceScalarProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceScalar/ScalarChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangeSourceScalar/ScalarChangeSourceProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByEntity/ChangedByEntityProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByEntity/ChangedByEntityProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByEntity/EntityCurrentUserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByEntity/EntityCurrentUserProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByScalar/ChangedByScalarProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByScalar/ChangedByScalarProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByScalar/ScalarCurrentUserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Providers/ChangedByScalar/ScalarCurrentUserProvider.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/ChangeSourceEntityUserReadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/ChangeSourceEntityUserReadRepository.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/ChangedByEntityUserReadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/ChangedByEntityUserReadRepository.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/IUserReadRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/IUserReadRepository.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/UserReadRepository``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Repositories/UserReadRepository``.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangeSourceEntityTestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangeSourceEntityTestScope.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangeSourceScalarTestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangeSourceScalarTestScope.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangedByEntityTestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangedByEntityTestScope.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangedByScalarTestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/ChangedByScalarTestScope.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/TestScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/TestScope.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/TestScope``.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scopes/TestScope``.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scripts/initial-migration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scripts/initial-migration.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scripts/readd-all-migrations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Scripts/readd-all-migrations.ps1 -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/SyncOrAsyncExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/SyncOrAsyncExtensions.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/SyncOrAsyncValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/SyncOrAsyncValue.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/MigrateDatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/MigrateDatabaseTestBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/MutateEntityTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/MutateEntityTestBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/ScriptMigrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/ScriptMigrationTestBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/TestBase.cs -------------------------------------------------------------------------------- /tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/UserTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/EFCore.ChangeTriggers.Tests.Integration.Common/Tests/UserTestBase.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness.sln -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/ChangeSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/ChangeSourceProvider.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/ChangeSourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/ChangeSourceType.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/ChangedByProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/ChangedByProvider.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/Configuration/UserChangeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/Configuration/UserChangeConfiguration.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/CurrentUserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/CurrentUserProvider.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/PaymentMethods/PaymentMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/PaymentMethods/PaymentMethod.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Permissions/Permission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Permissions/Permission.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Permissions/PermissionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Permissions/PermissionBase.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Permissions/PermissionChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Permissions/PermissionChange.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Users/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Users/User.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Users/UserBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Users/UserBase.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/DbModels/Users/UserChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/DbModels/Users/UserChange.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/LinqMarkdownTableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/LinqMarkdownTableExtensions.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/Migrations/20241023153335_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/Migrations/20241023153335_Initial.Designer.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/Migrations/20241023153335_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/Migrations/20241023153335_Initial.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/Migrations/MyDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/Migrations/MyDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/MyDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/MyDbContext.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/Program.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/TestChangeQueriesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/TestChangeQueriesService.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/TestDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/TestDataService.cs -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/TestHarness.csproj -------------------------------------------------------------------------------- /tests/TestHarness/TestHarness/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemunkie15/EFCore.ChangeTriggers/HEAD/tests/TestHarness/TestHarness/appsettings.json --------------------------------------------------------------------------------