Maestria.Extensions.Data
1.1.0
See the version list below for details.
dotnet add package Maestria.Extensions.Data --version 1.1.0
NuGet\Install-Package Maestria.Extensions.Data -Version 1.1.0
<PackageReference Include="Maestria.Extensions.Data" Version="1.1.0" />
paket add Maestria.Extensions.Data --version 1.1.0
#r "nuget: Maestria.Extensions.Data, 1.1.0"
// Install Maestria.Extensions.Data as a Cake Addin
#addin nuget:?package=Maestria.Extensions.Data&version=1.1.0
// Install Maestria.Extensions.Data as a Cake Tool
#tool nuget:?package=Maestria.Extensions.Data&version=1.1.0
Maestria.Extensions.Data
What is Maestria.Extensions.Data?
Extension functions package for IDataReader implementations.
What is Maestria Project?
This library is part of Maestria Project.
Maestria is a project to provide maximum productivity and elegance to your code.
Where can I get it?
First, install NuGet. Then, install Maestria.Extensions.Data from the package manager console:
PM> Install-Package Maestria.Extensions.Data
or install from the dotnet cli command line:
> dotnet add package Maestria.Extensions.Data
How do I get started?
First, import "Maestria.Extensions.Data" reference:
using Maestria.Extensions.Data;
Then in your application code, use fluent syntax to obtain field value:
// Configuring data connection
var connection = // your .net data provider db connection
var cmd = connection.CreateCommand();
cmd.CommandText = "select * from...";
var reader = cmd.ExecuteReader();
reader.Read();
// In this case throw exception when field value is null
var int16Value = reader.GetInt16("fieldName");
var int32Value = reader.GetInt32("fieldName");
var decimalValue = reader.GetDecimal("fieldName");
// With safe method when field value is null, it will return default value of the second argument or INullable<?> for data type
var decimalSafeValue = reader.GetDecimalSafe("fieldName", 0); // output is 0 when invalid field value
var decimalSafeValue2 = reader.GetDecimalSafe("fieldName"); // output is nyll when invalid field value
// But safe methods, throw exception when field name is invalid
var temp = reader.GetDecimalSafe("invalid field name"); // throw IndexOutOfRangeException
If my contributions helped you, please help me buy a coffee 😄
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- 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.