Fluent.Sql 1.0.0.39

There is a newer version of this package available.
See the version list below for details.
dotnet add package Fluent.Sql --version 1.0.0.39
NuGet\Install-Package Fluent.Sql -Version 1.0.0.39
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="Fluent.Sql" Version="1.0.0.39" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Fluent.Sql --version 1.0.0.39
#r "nuget: Fluent.Sql, 1.0.0.39"
#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 Fluent.Sql as a Cake Addin
#addin nuget:?package=Fluent.Sql&version=1.0.0.39

// Install Fluent.Sql as a Cake Tool
#tool nuget:?package=Fluent.Sql&version=1.0.0.39

Fluent.Sql designed to simplify a work with SqlConnection, SqlTransaction, SqlCommand and SqlDataReader objects

Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  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
1.0.0.40 1,730 6/26/2017
1.0.0.39 1,093 6/23/2017
1.0.0.37 1,082 6/22/2017
1.0.0.35 1,079 6/20/2017
1.0.0.34 1,109 6/18/2017
1.0.0.33 1,091 6/14/2017
1.0.0.32 1,095 6/14/2017
1.0.0.31 1,312 6/8/2017
1.0.0.25 959 5/17/2017
1.0.0.24 1,830 4/25/2017
1.0.0.23 988 4/24/2017
1.0.0.22 957 4/24/2017
1.0.0.21 947 4/6/2017
1.0.0.20 963 4/5/2017
1.0.0.19 966 4/5/2017
1.0.0.18 1,000 3/18/2017
1.0.0.16 982 1/22/2017
1.0.0.15 970 1/9/2017
1.0.0.14 988 12/22/2016
1.0.0.13 937 11/30/2016
1.0.0.11 953 11/30/2016
1.0.0.10 955 11/16/2016
1.0.0.9 981 11/14/2016
1.0.0.6 965 11/13/2016
1.0.0.5 972 11/12/2016
1.0.0.4 974 11/12/2016
1.0.0.3 962 11/11/2016
1.0.0.2 986 11/10/2016
1.0.0.1 974 11/10/2016

+ Added
- Removed
# Fix
* Changed, minor
! Changed, major
$ Refactored

TODO:
=====

1.0.0.39
! GetFloat => GetSingle

1.0.0.37
+ SingleReaderFluentSqlCommand<T>, ISingleReaderFluentSqlCommand<T>
+ FluentSqlCommandFactory.SingleReader<T>

1.0.0.35
! Rename IFluentCommandFactory => IFluentSqlCommandFactory

1.0.0.34
! FluentSqlCommand.SetParameters(Action<IDalSqlCommand> iSerializeParameters) now adds action to the list
   of "to be done" instead of just execute only one specified

1.0.0.33
# Fix DefaultConnection and DefaultTransaction

1.0.0.32
* IDalSqlConnection DefaultConnection => Func<IDalSqlConnection> DefaultConnection
* IFluentSqlTransaction DefaultTransaction => Func<IFluentSqlTransaction> DefaultTransaction

1.0.0.31
$ Rafactored
* CreateConnection => Create
* FluentCommandFactory => FluentSqlCommandFactory
+ Add DalSqlCommand.Connection
+ Add FluentCommandFactory.DefaulConnection
- Remove FluentCommandFactory.Context
- Remove FluentCommandFactory.KeepConnection
+ Add FluentSqlRepository
+ Add FluentSqlTransaction
+ Add SqlQueryFactoryBase
+ Add SqlQueryAssemblyFactoryBase

1.0.0.25
+ Add ExecuteScalar result casting

1.0.0.24
+ Add DalSqlReader.Get{XXX}Nullable methods

1.0.0.23
* Minor changes

1.0.0.22
# Add AddWithValue method when calling with null argument

1.0.0.21
* Minor changes

1.0.0.20
# Fix Connection closed problem

1.0.0.19
* Minor changes

1.0.0.18
* Minor changes

1.0.0.17
$ Refactoring DalContext => DalContextBase

1.0.0.16
+ Add ReadAllBytes method

1.0.0.15
# Fix SetParameters

1.0.0.14
$ Refactored all fluent commands

1.0.0.13
+ Added interfaces methods to commands that returns themselves as interfaces

1.0.0.12
+ Added missing members to interfaces

1.0.0.11
+ Added IFluentCommandFactory interface

1.0.0.10
+ LazyCachedDalSqlDataReader - Added cahching modes: lazy (used when CahchingMode.Lazy)
+ Addded FluentCommandFactory

1.0.0.9
+ Added BaseFluentSqlCommand<T>.KeepConnection option
 (True - uses DalContext.CreateConnection)
 (False - uses DalContext.PersistentConnection, which must be managed manually)
+ Added DalSqlConnectionFactory
* DalContext has PersistentConnection (old)
+ DalContext has CreateConnection() method
! DalSqlDataReader -> NonCachedDalSqlDataReader (used when CahchingMode.Disabled)
+ Added CachedDalSqlDataReader (DalSqlDataReader - Add caching for field names/indices) (used when CahchingMode.Standard)
+ Add ReaderFluentSqlCommand<TResultContainer>.SetCachingMode (Default is CachingMode.Standard)
+ DalSqlDataReader - Add cahching modes: disabled, standart
$ - Refactored DalSql* objects and FluentCommands to use IDalSqlDataReader
* Fixed bug when SerializeParameters is null

1.0.0.6
+ ExecuteReaderYield Added to ReaderFluentSqlCommand<TResultContainer>

1.0.0.5
+ Added new methods to DalSqlDataReader.
+ Added support for multiple Results handling in ReaderFluentSqlCommand<T>

1.0.0.4
+ Added BaseFluentSqlCommand<T>.SetKeepConnection(bool). Default is true.
+ Added ReaderFluentSqlCommand<T>.SetBehavior(CommandBehavior). Default is CommandBehavior.Default.
+ Added new methods to DalSqlDataReader.