IntegrationTestingLibraryForSqlServer 1.5.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package IntegrationTestingLibraryForSqlServer --version 1.5.0
NuGet\Install-Package IntegrationTestingLibraryForSqlServer -Version 1.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="IntegrationTestingLibraryForSqlServer" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add IntegrationTestingLibraryForSqlServer --version 1.5.0
#r "nuget: IntegrationTestingLibraryForSqlServer, 1.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install IntegrationTestingLibraryForSqlServer as a Cake Addin
#addin nuget:?package=IntegrationTestingLibraryForSqlServer&version=1.5.0

// Install IntegrationTestingLibraryForSqlServer as a Cake Tool
#tool nuget:?package=IntegrationTestingLibraryForSqlServer&version=1.5.0

Provides helper functions for setting up and tearing down SQL Server database fakes for use in integration testing.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.3.0 1,282 6/30/2017
2.2.0 931 6/29/2017
2.1.0 1,106 7/19/2016
2.0.1 997 7/7/2016
2.0.0 961 7/7/2016
1.5.9 1,031 3/23/2016
1.5.8 1,127 11/11/2015
1.5.7 1,154 11/10/2015
1.5.6 1,012 10/22/2015
1.5.5 1,063 10/20/2015
1.5.4 973 10/14/2015
1.5.3 999 10/14/2015
1.5.2 978 10/13/2015
1.5.1 996 10/12/2015
1.5.0 945 10/12/2015
1.4.2 1,129 10/8/2015
1.4.1 1,140 10/8/2015
1.4.0 1,099 9/25/2015
1.3.1 1,009 9/17/2015
1.2.0 1,383 9/11/2015
1.1.0 1,681 8/5/2015
1.0.1 1,168 7/23/2015

1.5.0
     - ViewCheck is now complete and works by comparing the Data Reader schema with an expected definition
     - Added null argument checks into TableDefinitionExtensions
     - Added support for maximum column size
     - Added VerifyMatch methods to TableData for easier comparison assertion
1.4.2
     - Added some more support for schema name in views plus some more tests
1.4.1
     - Added support for schema name in tables and views
1.4.0
     - TableData objects can now be compared; different rulesets can be applied for column, row and value comparison
     - Added Data Reader import class: DataReaderPopulatedTableData
     - Added Specflow friendly import class: CollectionPopulatedTableData
     - TableDefinition Insert method will now only populate columns from TableDefinition if they are not already set
1.3.1
     - Breaking change: Extension VerifyEqual on TableDefinition now named VerifyMatch to make it consistent with TableDefinition extension.
     - Renamed ViewDefinition to TableBackedViewDefinition in readiness for ViewCheck.
     - TableDefinition Equal method now handles comparing columns in a different order.
1.3.0
     - Added support for partial table matches; for example if only two columns are used by the application but the table has more.
     - Breaking change: Extension VerifyEqual on TableDefinition now named VerifyMatch to make it clearer that it is checked against a 'real' table.
1.2.0
     - Views can now be created as a front to a table; this was simpler than duplicating all the create logic for views.
1.1.0
     - Added support for Identity constraint on columns.
1.0.0
     - Initial version.