Skip to content

Releases: martincostello/sqllocaldb

SQL LocalDB Wrapper v1.7.0.0

17 May 12:25

Choose a tag to compare

SqlLocalDb v1.7.0.0

  • Removed processor-specific native code from the solution. All native dependencies are now only those related to SQL LocaDB itself. This means the wrapper now ships as a single .NET assembly (System.Data.SqlLocalDb.dll) which is compiled as AnyCPU.
  • Added ability to control the behaviour when shutting down a SQL LocalDB instance using the new StopInstanceOptions enumeration via the SqlLocalDbApi.StopOptions property and the SqlLocalDbApi.StopInstance(string, StopInstanceOptions, TimeSpan) method overload.

SQL LocalDB Wrapper v1.6.0.0

17 May 12:24

Choose a tag to compare

SqlLocalDb v1.6.0.0

  • Changes to have the managed code automatically use the native library with the appropriate bitness for the executing processor architecture.
  • Fixed typo in XML documentation.
  • Improvements to build automation.
  • Updated to the latest versions of EntityFramework and Moq.
  • The non-core projects now target .NET Framework 4.5.1.

SQL LocalDB Wrapper v1.5.0.0

17 May 12:21

Choose a tag to compare

SqlLocalDb v1.5.0.0

Added the following new members:

  • string DbConnectionStringBuilder.GetPhysicalFileName()
  • void DbConnectionStringBuilder.SetPhysicalFileName(string)

SQL LocalDB Wrapper v1.4.0.0

17 May 12:20

Choose a tag to compare

SqlLocalDb v1.4.0.0

Added the following new members:

  • void DbConnectionStringBuilder.SetInitialCatalogName(string)
  • SqlConnectionStringBuilder ISqlLocalDbInstance.CreateConnectionStringBuilder()
  • ISqlLocalDbInstance ISqlLocalDbProvider.GetOrCreateInstance(string)

Fixed SqlLocalDbProvider.GetInstances() only ever returning the default instance.

Added sample application that shows use of the assembly with EntityFramework.

SQL LocalDB Wrapper v1.3.0.0

17 May 12:18

Choose a tag to compare

SqlLocalDb v1.3.0.0

Added new extension methods to make creating and working with connection strings easier. Specifically these are:

  • DbConnection ISqlLocalDbInstance.GetConnectionForDefaultModel()
  • DbConnection ISqlLocalDbInstance.GetConnectionForDefaultModel(string initialCatalog)
  • DbConnectionStringBuilder ISqlLocalDbInstance.GetConnectionStringForDefaultModel()
  • DbConnectionStringBuilder ISqlLocalDbInstance.GetConnectionStringForDefaultModel(string initialCatalog)
  • string DbConnectionStringBuilder.GetInitialCatalogName()

SQL LocalDB Wrapper v1.2.0.0

17 May 12:16

Choose a tag to compare

SqlLocalDb v1.2.0.0

Added overloads to support specifying the name of the Initial Catalog using the ISqlLocalDbInstance.GetConnectionForModel() and ISqlLocalDbInstance.GetConnectionStringForModel() extension methods.

SQL LocalDB Wrapper v1.1.0.0

17 May 12:13

Choose a tag to compare

SqlLocalDb v1.1.0.0

Adds logging, improvements to help use with EntityFramework and new interfaces to help with mocking/abstractions.