├── .gitignore ├── BuildNuGetPackages ├── BuildFromRelease-Client.bat ├── BuildFromRelease-Interface.bat ├── BuildFromRelease-Service.Example.bat └── BuildFromRelease-Service.bat ├── DataProviderClient ├── DataProviderClient.csproj ├── Properties │ └── AssemblyInfo.cs ├── RemoteSqlClient.cs ├── RemoteSqlCommandClient.cs ├── RemoteSqlConnectionClient.cs ├── RemoteSqlDataReaderClient.cs ├── RemoteSqlParameterClient.cs ├── RemoteSqlParameterSetClient.cs ├── RemoteSqlTransactionClient.cs └── SafelyDisposableChannelFactory.cs ├── DataProviderInterface ├── DataProviderInterface.csproj ├── IDs │ ├── CommandId.cs │ ├── ConnectionId.cs │ ├── DataReaderId.cs │ ├── ParameterId.cs │ └── TransactionId.cs ├── Interfaces │ ├── IRemoteSqlCommand.cs │ ├── IRemoteSqlConnection.cs │ ├── IRemoteSqlDataReader.cs │ ├── IRemoteSqlParameter.cs │ ├── IRemoteSqlParameterSet.cs │ ├── IRemoteSqlTransaction.cs │ └── ISqlProxy.cs ├── InvalidIdException.cs └── Properties │ └── AssemblyInfo.cs ├── DataProviderService.Example ├── DataProviderService.Example.csproj ├── DictionaryCache.cs ├── DiskCache.cs ├── ISqlRunner.cs ├── Properties │ └── AssemblyInfo.cs ├── SerialisingCache.cs └── SqlRunner.cs ├── DataProviderService ├── DataProviderService.csproj ├── ErrorWrappingBehavior.cs ├── Host.cs ├── Properties │ └── AssemblyInfo.cs └── ProxyImplementations │ ├── ConcurrentParameterToCommandLookup.cs │ ├── PassThrough │ ├── SqlProxy.cs │ ├── SqlProxy_Command.cs │ ├── SqlProxy_Connection.cs │ ├── SqlProxy_DataReader.cs │ ├── SqlProxy_Parameter.cs │ ├── SqlProxy_ParameterSet.cs │ └── SqlProxy_Transaction.cs │ ├── Replay │ ├── QueryCriteria.cs │ ├── SqlReplayer.cs │ ├── SqlReplayerCommand.cs │ ├── SqlReplayerConnection.cs │ ├── SqlReplayerParameter.cs │ ├── SqlReplayerParameterCollection.cs │ └── SqlReplayerTransaction.cs │ └── Store.cs ├── LICENSE ├── ProductiveRage.SqlProxyAndReplay.Client.nuspec ├── ProductiveRage.SqlProxyAndReplay.Interface.nuspec ├── ProductiveRage.SqlProxyAndReplay.Service.Example.nuspec ├── ProductiveRage.SqlProxyAndReplay.Service.nuspec ├── README.md ├── SharedAssemblyInfo.cs ├── SqlProxyAndReplay.sln ├── Tester ├── App.config ├── Blog.sqlite ├── ISqlRunner.cs ├── Post.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SqlRunner.cs ├── SqliteRunner.cs ├── Tester (set me as Startup Project).csproj └── packages.config └── Tests ├── IDbConnectionExtensions.cs ├── IntegrationTests.cs ├── Properties └── AssemblyInfo.cs ├── ReadOnlyDictionaryCache.cs ├── SqliteRunner.cs ├── StaysOpenSqliteConnection.cs ├── Tests.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildNuGetPackages/BuildFromRelease-Client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/BuildNuGetPackages/BuildFromRelease-Client.bat -------------------------------------------------------------------------------- /BuildNuGetPackages/BuildFromRelease-Interface.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/BuildNuGetPackages/BuildFromRelease-Interface.bat -------------------------------------------------------------------------------- /BuildNuGetPackages/BuildFromRelease-Service.Example.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/BuildNuGetPackages/BuildFromRelease-Service.Example.bat -------------------------------------------------------------------------------- /BuildNuGetPackages/BuildFromRelease-Service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/BuildNuGetPackages/BuildFromRelease-Service.bat -------------------------------------------------------------------------------- /DataProviderClient/DataProviderClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/DataProviderClient.csproj -------------------------------------------------------------------------------- /DataProviderClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlCommandClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlCommandClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlConnectionClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlConnectionClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlDataReaderClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlDataReaderClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlParameterClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlParameterClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlParameterSetClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlParameterSetClient.cs -------------------------------------------------------------------------------- /DataProviderClient/RemoteSqlTransactionClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/RemoteSqlTransactionClient.cs -------------------------------------------------------------------------------- /DataProviderClient/SafelyDisposableChannelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderClient/SafelyDisposableChannelFactory.cs -------------------------------------------------------------------------------- /DataProviderInterface/DataProviderInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/DataProviderInterface.csproj -------------------------------------------------------------------------------- /DataProviderInterface/IDs/CommandId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/IDs/CommandId.cs -------------------------------------------------------------------------------- /DataProviderInterface/IDs/ConnectionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/IDs/ConnectionId.cs -------------------------------------------------------------------------------- /DataProviderInterface/IDs/DataReaderId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/IDs/DataReaderId.cs -------------------------------------------------------------------------------- /DataProviderInterface/IDs/ParameterId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/IDs/ParameterId.cs -------------------------------------------------------------------------------- /DataProviderInterface/IDs/TransactionId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/IDs/TransactionId.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlCommand.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlConnection.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlDataReader.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlParameter.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlParameterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlParameterSet.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/IRemoteSqlTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/IRemoteSqlTransaction.cs -------------------------------------------------------------------------------- /DataProviderInterface/Interfaces/ISqlProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Interfaces/ISqlProxy.cs -------------------------------------------------------------------------------- /DataProviderInterface/InvalidIdException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/InvalidIdException.cs -------------------------------------------------------------------------------- /DataProviderInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataProviderService.Example/DataProviderService.Example.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/DataProviderService.Example.csproj -------------------------------------------------------------------------------- /DataProviderService.Example/DictionaryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/DictionaryCache.cs -------------------------------------------------------------------------------- /DataProviderService.Example/DiskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/DiskCache.cs -------------------------------------------------------------------------------- /DataProviderService.Example/ISqlRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/ISqlRunner.cs -------------------------------------------------------------------------------- /DataProviderService.Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataProviderService.Example/SerialisingCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/SerialisingCache.cs -------------------------------------------------------------------------------- /DataProviderService.Example/SqlRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService.Example/SqlRunner.cs -------------------------------------------------------------------------------- /DataProviderService/DataProviderService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/DataProviderService.csproj -------------------------------------------------------------------------------- /DataProviderService/ErrorWrappingBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ErrorWrappingBehavior.cs -------------------------------------------------------------------------------- /DataProviderService/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/Host.cs -------------------------------------------------------------------------------- /DataProviderService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/ConcurrentParameterToCommandLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/ConcurrentParameterToCommandLookup.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Command.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Connection.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_DataReader.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Parameter.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_ParameterSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_ParameterSet.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Transaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/PassThrough/SqlProxy_Transaction.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/QueryCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/QueryCriteria.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayer.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayerCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayerCommand.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayerConnection.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayerParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayerParameter.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayerParameterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayerParameterCollection.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Replay/SqlReplayerTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Replay/SqlReplayerTransaction.cs -------------------------------------------------------------------------------- /DataProviderService/ProxyImplementations/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/DataProviderService/ProxyImplementations/Store.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/LICENSE -------------------------------------------------------------------------------- /ProductiveRage.SqlProxyAndReplay.Client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/ProductiveRage.SqlProxyAndReplay.Client.nuspec -------------------------------------------------------------------------------- /ProductiveRage.SqlProxyAndReplay.Interface.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/ProductiveRage.SqlProxyAndReplay.Interface.nuspec -------------------------------------------------------------------------------- /ProductiveRage.SqlProxyAndReplay.Service.Example.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/ProductiveRage.SqlProxyAndReplay.Service.Example.nuspec -------------------------------------------------------------------------------- /ProductiveRage.SqlProxyAndReplay.Service.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/ProductiveRage.SqlProxyAndReplay.Service.nuspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/README.md -------------------------------------------------------------------------------- /SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /SqlProxyAndReplay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/SqlProxyAndReplay.sln -------------------------------------------------------------------------------- /Tester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/App.config -------------------------------------------------------------------------------- /Tester/Blog.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/Blog.sqlite -------------------------------------------------------------------------------- /Tester/ISqlRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/ISqlRunner.cs -------------------------------------------------------------------------------- /Tester/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/Post.cs -------------------------------------------------------------------------------- /Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/Program.cs -------------------------------------------------------------------------------- /Tester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tester/SqlRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/SqlRunner.cs -------------------------------------------------------------------------------- /Tester/SqliteRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/SqliteRunner.cs -------------------------------------------------------------------------------- /Tester/Tester (set me as Startup Project).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/Tester (set me as Startup Project).csproj -------------------------------------------------------------------------------- /Tester/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tester/packages.config -------------------------------------------------------------------------------- /Tests/IDbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/IDbConnectionExtensions.cs -------------------------------------------------------------------------------- /Tests/IntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/IntegrationTests.cs -------------------------------------------------------------------------------- /Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/ReadOnlyDictionaryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/ReadOnlyDictionaryCache.cs -------------------------------------------------------------------------------- /Tests/SqliteRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/SqliteRunner.cs -------------------------------------------------------------------------------- /Tests/StaysOpenSqliteConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/StaysOpenSqliteConnection.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProductiveRage/SqlProxyAndReplay/HEAD/Tests/packages.config --------------------------------------------------------------------------------