├── .gitattributes ├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── API_REFERENCE.md ├── EXAMPLES.md ├── HYBRID_APPROACH_SUMMARY.md ├── NUGET_PACKAGE_SUMMARY.md ├── NUGET_PUBLISHING_GUIDE.md ├── PHASE1_IMPLEMENTATION_PLAN.md ├── PRD_SQLDBEntityNotifier.md ├── PROJECT_STRUCTURE.md ├── README.md ├── README_AdvancedCDCFeatures.md ├── SQLDBEntityNotifier.Tests ├── ChangeTableServiceTests.cs ├── Compatibility │ └── BackwardCompatibilityTests.cs ├── Models │ ├── AdvancedChangeFiltersTests.cs │ ├── ChangeAnalyticsTests.cs │ ├── ChangeContextManagerTests.cs │ ├── ChangeCorrelationEngineTests.cs │ ├── ChangeReplayEngineTests.cs │ ├── ChangeRoutingEngineTests.cs │ ├── ColumnChangeFilterOptionsTests.cs │ ├── DatabaseConfigurationTests.cs │ ├── EnhancedRecordChangedEventArgsTests.cs │ └── SchemaChangeDetectionTests.cs ├── Providers │ ├── CDCProviderFactoryTests.cs │ ├── MySqlCDCProviderTests.cs │ ├── PostgreSqlCDCProviderTests.cs │ └── SqlServerCDCProviderTests.cs ├── README_Tests.md ├── SQLDBEntityNotifier.Tests.csproj ├── SqlChangeTrackingTests.cs ├── SqlDBNotificationServiceTests.cs ├── UnifiedDBNotificationServiceTests.cs └── run_tests.sh ├── SQLDBEntityNotifier ├── ChangeTableService.cs ├── Compatibility │ └── SqlDBNotificationServiceCompatibility.cs ├── DOCUMENTATION.md ├── ErrorEventArgs.cs ├── Examples │ ├── AdvancedCDCFeaturesExample.cs │ ├── BiDirectionalSyncExample.cs │ ├── ColumnLevelChangeFilteringExample.cs │ ├── MultiDatabaseCDCExample.cs │ └── Phase3And4FeaturesExample.cs ├── Helpers │ └── ChangeTrackingQueryBuilder.cs ├── IChangeTableService.cs ├── IDBNotificationService.cs ├── ISQLTableMonitorManager.cs ├── Interfaces │ └── ICDCProvider.cs ├── Models │ ├── AdvancedChangeFilters.cs │ ├── ChangeAnalytics.cs │ ├── ChangeContext.cs │ ├── ChangeContextManager.cs │ ├── ChangeCorrelationEngine.cs │ ├── ChangeCorrelationEngine.cs.backup │ ├── ChangeDestinations.cs │ ├── ChangeFilterOptions.cs │ ├── ChangeOperation.cs │ ├── ChangeReplayEngine.cs │ ├── ChangeRoutingEngine.cs │ ├── ColumnChangeFilterOptions.cs │ ├── ColumnChangeInfo.cs │ ├── DatabaseConfiguration.cs │ ├── DatabaseType.cs │ ├── EnhancedChangeContext.cs │ ├── EnhancedRecordChangedEventArgs.cs │ ├── RoutingRules.cs │ ├── SchemaChangeDetection.cs │ ├── SchemaChangeInfo.cs │ └── SchemaChangeSupportingModels.cs ├── Providers │ ├── CDCProviderFactory.cs │ ├── MySqlCDCProvider.cs │ ├── PostgreSqlCDCProvider.cs │ └── SqlServerCDCProvider.cs ├── README.md ├── README_AdvancedCDCFeatures.md ├── README_ChangeContextFiltering.md ├── README_CompleteImplementation.md ├── README_MultiDatabaseCDC.md ├── RecordChangedEventArgs.cs ├── SQLDBEntityNotifier.csproj ├── SQLDBNotifierServiceCollectionExtensions.cs ├── SQLTableMonitorManager.cs ├── SqlDBNotificationService.cs └── UnifiedDBNotificationService.cs ├── SQLDBNotifierLib ├── ChangeTableService.cs ├── ErrorEventArgs.cs ├── IChangeTableService.cs ├── IDBNotificationService.cs ├── ISQLTableMonitorManager.cs ├── RecordChangedEventArgs.cs ├── SQLDBNotifierServiceCollectionExtensions.cs ├── SQLTableMonitorManager.cs └── SqlDBNotificationService.cs ├── SQLEFTableNotification.Console ├── MappingProfile.cs ├── Program.cs ├── SQLEFTableNotification.Console.csproj ├── Services │ ├── ChangeTableService.cs │ └── SQLTableMonitorManager.cs ├── appsettings.Development.json └── appsettings.json ├── SQLEFTableNotification ├── SQLEFTableNotification.Api │ ├── Controllers │ │ ├── AccountAsyncController.cs │ │ ├── AccountController.cs │ │ ├── InfoController.cs │ │ ├── TokenController.cs │ │ ├── UserAsyncController.cs │ │ └── UserController.cs │ ├── ExceptionHandler.cs │ ├── Globals.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── SQLEFTableNotification.Api.csproj │ ├── Seed │ │ ├── accounts.json │ │ └── users.json │ ├── Settings │ │ └── LogglySettings.cs │ ├── Startup.cs │ ├── _nugets.txt │ ├── _readme.txt │ ├── appsettings.Development.json │ └── appsettings.json ├── SQLEFTableNotification.Domain │ ├── BaseDomain.cs │ ├── Domain │ │ ├── 2_t4DomainViewModelsGenerate.tt │ │ ├── AccountViewModel.cs │ │ └── UserViewModel.cs │ ├── Mapping │ │ └── MappingProfile.cs │ ├── SQLEFTableNotification.Domain.csproj │ ├── Service │ │ ├── 4_t4DomainServicesGenerate.tt │ │ ├── AccountService.cs │ │ ├── AccountServiceAsync.cs │ │ ├── Generic │ │ │ ├── GenericService.cs │ │ │ ├── GenericServiceAsync.cs │ │ │ ├── IService.cs │ │ │ └── IServiceAsync.cs │ │ ├── UserService.cs │ │ └── UserServiceAsync.cs │ └── _nugets.txt └── SQLEFTableNotification.Entity │ ├── 1_t4EntityHelpersGenerate.tt │ ├── BaseEntity.cs │ ├── CodeGeneratorUtility-readme.pdf │ ├── CodeGeneratorUtility.bat │ ├── Context │ ├── DBContextExtension.cs │ └── SQLEFTableNotificationContext.cs │ ├── Entity │ ├── Account.cs │ ├── ChangeTable.cs │ ├── EntityHelper.cs │ ├── User.cs │ └── UserChangeTable.cs │ ├── IEntityPk.cs │ ├── Migrations │ ├── 20180708205028_InitialCreate.Designer.cs │ ├── 20180708205028_InitialCreate.cs │ └── SQLEFTableNotificationContextModelSnapshot.cs │ ├── Model │ └── DBOperationType.cs │ ├── Repository │ ├── IRepository.cs │ ├── IRepositoryAsync.cs │ ├── Repository.cs │ └── RepositoryAsync.cs │ ├── SQLEFTableNotification.Entity.csproj │ ├── UnitofWork │ └── UnitofWork.cs │ ├── _dbfirst.txt │ └── _nugets.txt ├── SQLEFTableNotificationLib ├── Delegates │ └── ServiceDelegates.cs ├── Interfaces │ ├── IChangeTableService.cs │ └── IDBNotificationService.cs ├── Models │ ├── DBOperationType.cs │ ├── ErrorEventArgs.cs │ └── RecordChangedEventArgs.cs ├── SQLEFTableNotification.csproj ├── Services │ ├── ChangeTableService.cs │ ├── ScheduledJobTimer.cs │ └── SqlDBNotificationService.cs └── SqlEFTableDependency.cd ├── SQLEFTableNotificationTests ├── SQLEFTableNotification.Tests.csproj └── Services │ └── SqlDBNotificationServiceTests.cs ├── SQLTableNotification.sln ├── TESTSPRITE_DEVELOPMENT_ROADMAP.md ├── TESTSPRITE_EXECUTION_PLAN.md ├── TESTSPRITE_QUICK_REFERENCE.md ├── testsprite_config.json └── testsprite_tests ├── standard_prd.json ├── testsprite-mcp-test-report.html ├── testsprite-mcp-test-report.md ├── testsprite_backend_test_plan.json └── tmp ├── code_summary.json ├── config.json └── prd_files └── PRD_SQLDBEntityNotifier.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/.gitignore -------------------------------------------------------------------------------- /API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/API_REFERENCE.md -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /HYBRID_APPROACH_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/HYBRID_APPROACH_SUMMARY.md -------------------------------------------------------------------------------- /NUGET_PACKAGE_SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/NUGET_PACKAGE_SUMMARY.md -------------------------------------------------------------------------------- /NUGET_PUBLISHING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/NUGET_PUBLISHING_GUIDE.md -------------------------------------------------------------------------------- /PHASE1_IMPLEMENTATION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/PHASE1_IMPLEMENTATION_PLAN.md -------------------------------------------------------------------------------- /PRD_SQLDBEntityNotifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/PRD_SQLDBEntityNotifier.md -------------------------------------------------------------------------------- /PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/README.md -------------------------------------------------------------------------------- /README_AdvancedCDCFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/README_AdvancedCDCFeatures.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/ChangeTableServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/ChangeTableServiceTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Compatibility/BackwardCompatibilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Compatibility/BackwardCompatibilityTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/AdvancedChangeFiltersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/AdvancedChangeFiltersTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ChangeAnalyticsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ChangeAnalyticsTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ChangeContextManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ChangeContextManagerTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ChangeCorrelationEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ChangeCorrelationEngineTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ChangeReplayEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ChangeReplayEngineTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ChangeRoutingEngineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ChangeRoutingEngineTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/ColumnChangeFilterOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/ColumnChangeFilterOptionsTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/DatabaseConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/DatabaseConfigurationTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/EnhancedRecordChangedEventArgsTests.cs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Models/SchemaChangeDetectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Models/SchemaChangeDetectionTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Providers/CDCProviderFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Providers/CDCProviderFactoryTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Providers/MySqlCDCProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Providers/MySqlCDCProviderTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Providers/PostgreSqlCDCProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Providers/PostgreSqlCDCProviderTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/Providers/SqlServerCDCProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/Providers/SqlServerCDCProviderTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/README_Tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/README_Tests.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/SQLDBEntityNotifier.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/SQLDBEntityNotifier.Tests.csproj -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/SqlChangeTrackingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/SqlChangeTrackingTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/SqlDBNotificationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/SqlDBNotificationServiceTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/UnifiedDBNotificationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/UnifiedDBNotificationServiceTests.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier.Tests/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier.Tests/run_tests.sh -------------------------------------------------------------------------------- /SQLDBEntityNotifier/ChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/ChangeTableService.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Compatibility/SqlDBNotificationServiceCompatibility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Compatibility/SqlDBNotificationServiceCompatibility.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/DOCUMENTATION.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/ErrorEventArgs.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Examples/AdvancedCDCFeaturesExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Examples/AdvancedCDCFeaturesExample.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Examples/BiDirectionalSyncExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Examples/BiDirectionalSyncExample.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Examples/ColumnLevelChangeFilteringExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Examples/ColumnLevelChangeFilteringExample.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Examples/MultiDatabaseCDCExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Examples/MultiDatabaseCDCExample.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Examples/Phase3And4FeaturesExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Examples/Phase3And4FeaturesExample.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Helpers/ChangeTrackingQueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Helpers/ChangeTrackingQueryBuilder.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/IChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/IChangeTableService.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/IDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/IDBNotificationService.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/ISQLTableMonitorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/ISQLTableMonitorManager.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Interfaces/ICDCProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Interfaces/ICDCProvider.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/AdvancedChangeFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/AdvancedChangeFilters.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeAnalytics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeAnalytics.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeContext.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeContextManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeContextManager.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeCorrelationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeCorrelationEngine.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeCorrelationEngine.cs.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeCorrelationEngine.cs.backup -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeDestinations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeDestinations.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeFilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeFilterOptions.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeOperation.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeReplayEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeReplayEngine.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ChangeRoutingEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ChangeRoutingEngine.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ColumnChangeFilterOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ColumnChangeFilterOptions.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/ColumnChangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/ColumnChangeInfo.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/DatabaseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/DatabaseConfiguration.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/DatabaseType.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/EnhancedChangeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/EnhancedChangeContext.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/EnhancedRecordChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/EnhancedRecordChangedEventArgs.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/RoutingRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/RoutingRules.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/SchemaChangeDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/SchemaChangeDetection.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/SchemaChangeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/SchemaChangeInfo.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Models/SchemaChangeSupportingModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Models/SchemaChangeSupportingModels.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Providers/CDCProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Providers/CDCProviderFactory.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Providers/MySqlCDCProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Providers/MySqlCDCProvider.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Providers/PostgreSqlCDCProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Providers/PostgreSqlCDCProvider.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/Providers/SqlServerCDCProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/Providers/SqlServerCDCProvider.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/README.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/README_AdvancedCDCFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/README_AdvancedCDCFeatures.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/README_ChangeContextFiltering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/README_ChangeContextFiltering.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/README_CompleteImplementation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/README_CompleteImplementation.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/README_MultiDatabaseCDC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/README_MultiDatabaseCDC.md -------------------------------------------------------------------------------- /SQLDBEntityNotifier/RecordChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/RecordChangedEventArgs.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/SQLDBEntityNotifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/SQLDBEntityNotifier.csproj -------------------------------------------------------------------------------- /SQLDBEntityNotifier/SQLDBNotifierServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/SQLDBNotifierServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/SQLTableMonitorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/SQLTableMonitorManager.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/SqlDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/SqlDBNotificationService.cs -------------------------------------------------------------------------------- /SQLDBEntityNotifier/UnifiedDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBEntityNotifier/UnifiedDBNotificationService.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/ChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/ChangeTableService.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/ErrorEventArgs.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/IChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/IChangeTableService.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/IDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/IDBNotificationService.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/ISQLTableMonitorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/ISQLTableMonitorManager.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/RecordChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/RecordChangedEventArgs.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/SQLDBNotifierServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/SQLDBNotifierServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/SQLTableMonitorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/SQLTableMonitorManager.cs -------------------------------------------------------------------------------- /SQLDBNotifierLib/SqlDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLDBNotifierLib/SqlDBNotificationService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/MappingProfile.cs -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/Program.cs -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/SQLEFTableNotification.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/SQLEFTableNotification.Console.csproj -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/Services/ChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/Services/ChangeTableService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/Services/SQLTableMonitorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/Services/SQLTableMonitorManager.cs -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/appsettings.Development.json -------------------------------------------------------------------------------- /SQLEFTableNotification.Console/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification.Console/appsettings.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/AccountAsyncController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/AccountAsyncController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/AccountController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/InfoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/InfoController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/TokenController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/UserAsyncController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/UserAsyncController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Controllers/UserController.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/ExceptionHandler.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Globals.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Program.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/SQLEFTableNotification.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/SQLEFTableNotification.Api.csproj -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Seed/accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Seed/accounts.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Seed/users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Seed/users.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Settings/LogglySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Settings/LogglySettings.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/Startup.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/_nugets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/_nugets.txt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/_readme.txt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/appsettings.Development.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Api/appsettings.json -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/BaseDomain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/BaseDomain.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/2_t4DomainViewModelsGenerate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/2_t4DomainViewModelsGenerate.tt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/AccountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/AccountViewModel.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Domain/UserViewModel.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Mapping/MappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Mapping/MappingProfile.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/SQLEFTableNotification.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/SQLEFTableNotification.Domain.csproj -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/4_t4DomainServicesGenerate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/4_t4DomainServicesGenerate.tt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/AccountService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/AccountService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/AccountServiceAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/AccountServiceAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/GenericService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/GenericService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/GenericServiceAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/GenericServiceAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/IService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/IServiceAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/Generic/IServiceAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/UserService.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/Service/UserServiceAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/Service/UserServiceAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Domain/_nugets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Domain/_nugets.txt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/1_t4EntityHelpersGenerate.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/1_t4EntityHelpersGenerate.tt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/BaseEntity.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/CodeGeneratorUtility-readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/CodeGeneratorUtility-readme.pdf -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/CodeGeneratorUtility.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/CodeGeneratorUtility.bat -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Context/DBContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Context/DBContextExtension.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Context/SQLEFTableNotificationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Context/SQLEFTableNotificationContext.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/Account.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/Account.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/ChangeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/ChangeTable.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/EntityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/EntityHelper.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/User.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/UserChangeTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Entity/UserChangeTable.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/IEntityPk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/IEntityPk.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/20180708205028_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/20180708205028_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/20180708205028_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/20180708205028_InitialCreate.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/SQLEFTableNotificationContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Migrations/SQLEFTableNotificationContextModelSnapshot.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Model/DBOperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Model/DBOperationType.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/IRepository.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/IRepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/IRepositoryAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/Repository.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/RepositoryAsync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/Repository/RepositoryAsync.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/SQLEFTableNotification.Entity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/SQLEFTableNotification.Entity.csproj -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/UnitofWork/UnitofWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/UnitofWork/UnitofWork.cs -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/_dbfirst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/_dbfirst.txt -------------------------------------------------------------------------------- /SQLEFTableNotification/SQLEFTableNotification.Entity/_nugets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotification/SQLEFTableNotification.Entity/_nugets.txt -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Delegates/ServiceDelegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Delegates/ServiceDelegates.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Interfaces/IChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Interfaces/IChangeTableService.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Interfaces/IDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Interfaces/IDBNotificationService.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Models/DBOperationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Models/DBOperationType.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Models/ErrorEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Models/ErrorEventArgs.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Models/RecordChangedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Models/RecordChangedEventArgs.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/SQLEFTableNotification.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/SQLEFTableNotification.csproj -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Services/ChangeTableService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Services/ChangeTableService.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Services/ScheduledJobTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Services/ScheduledJobTimer.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/Services/SqlDBNotificationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/Services/SqlDBNotificationService.cs -------------------------------------------------------------------------------- /SQLEFTableNotificationLib/SqlEFTableDependency.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationLib/SqlEFTableDependency.cd -------------------------------------------------------------------------------- /SQLEFTableNotificationTests/SQLEFTableNotification.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationTests/SQLEFTableNotification.Tests.csproj -------------------------------------------------------------------------------- /SQLEFTableNotificationTests/Services/SqlDBNotificationServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLEFTableNotificationTests/Services/SqlDBNotificationServiceTests.cs -------------------------------------------------------------------------------- /SQLTableNotification.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/SQLTableNotification.sln -------------------------------------------------------------------------------- /TESTSPRITE_DEVELOPMENT_ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/TESTSPRITE_DEVELOPMENT_ROADMAP.md -------------------------------------------------------------------------------- /TESTSPRITE_EXECUTION_PLAN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/TESTSPRITE_EXECUTION_PLAN.md -------------------------------------------------------------------------------- /TESTSPRITE_QUICK_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/TESTSPRITE_QUICK_REFERENCE.md -------------------------------------------------------------------------------- /testsprite_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_config.json -------------------------------------------------------------------------------- /testsprite_tests/standard_prd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/standard_prd.json -------------------------------------------------------------------------------- /testsprite_tests/testsprite-mcp-test-report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/testsprite-mcp-test-report.html -------------------------------------------------------------------------------- /testsprite_tests/testsprite-mcp-test-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/testsprite-mcp-test-report.md -------------------------------------------------------------------------------- /testsprite_tests/testsprite_backend_test_plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/testsprite_backend_test_plan.json -------------------------------------------------------------------------------- /testsprite_tests/tmp/code_summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/tmp/code_summary.json -------------------------------------------------------------------------------- /testsprite_tests/tmp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/tmp/config.json -------------------------------------------------------------------------------- /testsprite_tests/tmp/prd_files/PRD_SQLDBEntityNotifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinrdave/SQLEFTableNotification/HEAD/testsprite_tests/tmp/prd_files/PRD_SQLDBEntityNotifier.md --------------------------------------------------------------------------------