Releases: cedx/sql.net
Releases · cedx/sql.net
SQL Client for .NET 2.0.0
- Breaking change: the
QueryandQueryAsyncmethods of theConnectionExtensionsclass now return aList<T>by default. - Breaking change: transformed the
CommandOptionsconstructor into a parameterless constructor. - Added the
QueryOptionsrecord. - Added the
IEnumerable<T>.AsList()extension method. - Added the
-NoEnumerateand-Streamparameters to theInvoke-Querycmdlet.
SQL Client for .NET 1.2.0
- Simplified the constraint on generic type parameters.
SQL Client for .NET 1.1.0
- Added support for mapping a single record to multiple objects.
- Added the
-SplitOnparameter to theInvoke-Querycmdlet.
SQL Client for .NET 1.0.0
- First stable release.
- Removed the
Belin.Sql.Dapperassembly.
SQL Client for .NET 0.17.0
- Replaced all
dynamicreferences by theSystem.Dynamic.ExpandoObjecttype.
SQL Client for .NET 0.16.0
- Fixed the handling of parameter names and values.
- Fixed the
New-Parametercmdlet. - The
-Valueparameter of theNew-Parametercmdlet is now mandatory.
SQL Client for .NET 0.15.1
- Fixed the handling of parameter names and values.
SQL Client for .NET 0.15.0
- Added an indexer to the
ParameterCollectionclass. - Added the
Contains(),IndexOf()andRemoveAt()methods to theParameterCollectionclass.
SQL Client for .NET 0.14.0
- Added overloads to the constructor of
ParameterCollectionclass. - Renamed the
Parameter.ParameterNameproperty toName. - The
Parameterconstructor now allows values to be passed to theDbTypeandSizeproperties.
SQL Client for .NET 0.13.1
- The asynchronous methods of the
ConnectionExtensionsclass can now be used with instances of theIDbConnectioninterface.