VersaTul.Data.MsSql
2.0.11
Prefix Reserved
See the version list below for details.
dotnet add package VersaTul.Data.MsSql --version 2.0.11
NuGet\Install-Package VersaTul.Data.MsSql -Version 2.0.11
<PackageReference Include="VersaTul.Data.MsSql" Version="2.0.11" />
paket add VersaTul.Data.MsSql --version 2.0.11
#r "nuget: VersaTul.Data.MsSql, 2.0.11"
// Install VersaTul.Data.MsSql as a Cake Addin #addin nuget:?package=VersaTul.Data.MsSql&version=2.0.11 // Install VersaTul.Data.MsSql as a Cake Tool #tool nuget:?package=VersaTul.Data.MsSql&version=2.0.11
VersaTul Data MsSql
VersaTul Data MsSql is a C# library that provides the ability to quickly create database access objects, usable on Microsoft SQL Server databases. It is built on top of System.Data.Common and System.Data.SqlClient namespaces, and offers helper methods to easily call stored procedures or plain text SQL queries, and map the results into data objects. It also supports bulk insert operations using MsSql Bulk Copy functionality.
Installation
You can install VersaTul Data MsSql from NuGet using the following command:
PM> NuGet\Install-Package VersaTul.Data.MsSql -Version latest
Features
- Quickly create database access objects for MsSql databases
- Easily call stored procedures or plain text SQL queries
- Map the results into data objects using helper methods
- Perform bulk insert operations using MsSql Bulk Copy functionality
- Support for SqlServer SqlDbType.Structured data type
Usage
To use VersaTul Data MsSql, you need to register the factory for System.Data.SqlClient, set up the configuration for the database connection, and create an instance of SqlDataSource. Then you can use the methods of SqlDataSource to execute queries and commands, and process the results. You can also use the BulkCopy class to perform bulk insert operations.
Here is a simple example of using VersaTul Data MsSql to query and insert data from a MsSql database:
using Microsoft.SqlServer.Server;
using System.Data;
using System.Data.Common;
using System.Data.SqlClient;
using VersaTul.Configuration.Defaults.Sql;
using VersaTul.Data.MsSql;
using VersaTul.Data.MsSql.Contracts;
using VersaTul.Data.Sql;
using VersaTul.Data.Sql.Configurations;
using VersaTul.Utilities;
using VersaTul.Utilities.Contracts;
using SqlParameter = VersaTul.Data.MsSql.SqlParameter;
namespace MsSqlDatabaseConnection
{
public class Program
{
static void Main(string[] args)
{
//Register factory
DbProviderFactories.RegisterFactory("System.Data.SqlClient", SqlClientFactory.Instance);
// Setup configuration for MsSqlServer Database quering
var configSettings = new Builder().AddOrReplace(new[] {
new KeyValuePair<string,object>("DemoDb", new ConnectionInfo("Server=127.0.0.1;Database=DemoDb;User Id=sa;Password=Secretdatabasepassword;","System.Data.SqlClient")),
new KeyValuePair<string,object>("AdventureWorks2019", new ConnectionInfo("Server=127.0.0.1;Database=AdventureWorks2019;User Id=sa;Password=Secretdatabasepassword;","System.Data.SqlClient")),
new KeyValuePair<string, object>("SqlDbConnectionName", "AdventureWorks2019") // default to AdventureWorks2019 database.
}).BuildConfig();
var dataConfiguration = new DataConfiguration(configSettings);
// Setup needed class instance
var providerFactory = new ProviderFactory();
var commandFactory = new CommandFactory(dataConfiguration, providerFactory);
var sqlDataSource = new SqlDataSource(commandFactory);
var commonUtility = new CommonUtility();
// Create our DAL or DataService class
var dataService = new CustomerDataService(sqlDataSource, commonUtility, commonUtility);
// Get a customer
var customer = dataService.GetCustomer(customerId: 10);
// Add list of customer
var customers = new List<Customer>()
{
new Customer{ FirstName = "Joe", LastName = "Money" },
new Customer{ FirstName = "Silly", LastName = "Sally" }
};
var amountAdded = dataService.AddCustomers(customers);
}
}
// Data Model
public class Customer
{
public int CustomerId { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
}
// Setup Support for SqlServer SqlDbType.Structured.
internal class CustomerDataRecord : List<Customer>, IEnumerable<SqlDataRecord>
{
IEnumerator<SqlDataRecord> IEnumerable<SqlDataRecord>.GetEnumerator()
{
var sqlRow = new SqlDataRecord(
new SqlMetaData("FirstName", SqlDbType.NVarChar, 50),
new SqlMetaData("LastName", SqlDbType.NVarChar, 50)
);
foreach (var customer in this)
{
sqlRow.SetString(0, customer.FirstName);
sqlRow.SetString(1, customer.LastName);
yield return sqlRow;
}
}
}
// Setup for Connection String switching
public enum ConnectionName
{
DemoDb,
AdventureWorks2019
}
// DAL or DataServices
public interface ICustomerDataService
{
Customer? GetCustomer(int customerId);
int AddCustomers(IEnumerable<Customer> customers);
}
// By inheriting from BaseDataService all project specific data service will have the common functionality they need to access the dataSource.
public class CustomerDataService : BaseDataService, ICustomerDataService
{
public CustomerDataService(ISqlDataSource dataSource, INullFiltering filtering, IUtility utility) : base(dataSource, filtering, utility)
{
}
public Customer? GetCustomer(int customerId)
{
Customer? customer = null;
var parameterCollection = new ParameterCollection();
parameterCollection.Add(new SqlParameter("CustomerId", customerId, SqlDbType.Int, 0, ParameterDirection.Input));
// Using the overloaded ExecuteReader method replacing the default datable connection string with given name here.
// ConnectionName.DemoDb.ToString () - This can come in handy when you need to talk to multiple database from the one project.
ProcessReader(ExecuteReader(new StoredCommand("GetCustomer"), parameterCollection, ConnectionName.DemoDb.ToString()), delegate
{
customer = new Customer
{
CustomerId = Get((Customer customer) => customer.CustomerId),
FirstName = Get((Customer customer) => customer.FirstName),
LastName = Get((Customer customer) => customer.LastName)
};
});
return customer;
}
public int AddCustomers(IEnumerable<Customer> customers)
{
var customersRecords = new CustomerDataRecord();
customers.ToList().ForEach(model => customersRecords.Add(model));
var parameterCollection = new ParameterCollection();
// Note SqlParameter used here.
parameterCollection.Add(new SqlParameter("customers", customersRecords, SqlDbType.Structured, customersRecords.Count, ParameterDirection.Input));
// Performing a bulk insert using MsSql Server Structured data type.
return ExecuteNonQuery(new StoredCommand("dbo.BulkInsertCustomers"), parameterCollection, ConnectionName.DemoDb.ToString());
}
}
}
Documentation
For more information about VersaTul Data MsSql, please refer to the official documentation on GitHub. You can also find more examples and tutorials on how to use the library in different scenarios.
License
VersaTul Data MsSql is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- LumenWorks.Framework.IO.Core (>= 1.0.1)
- System.Data.SqlClient (>= 4.8.6)
- VersaTul.Data.Bulk (>= 1.0.4)
- VersaTul.Data.Sql (>= 2.0.9)
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.0.15 | 114 | 8/31/2024 |
2.0.14 | 129 | 5/5/2024 |
2.0.13 | 112 | 4/5/2024 |
2.0.12 | 100 | 4/4/2024 |
2.0.11 | 106 | 4/4/2024 |
2.0.10 | 125 | 3/1/2024 |
2.0.9 | 114 | 2/2/2024 |
2.0.8 | 106 | 1/20/2024 |
2.0.7 | 104 | 1/15/2024 |
2.0.6 | 126 | 1/11/2024 |
2.0.5 | 178 | 11/14/2023 |
2.0.4 | 120 | 11/13/2023 |
2.0.3 | 116 | 11/8/2023 |
2.0.2 | 129 | 11/8/2023 |
2.0.1 | 119 | 11/8/2023 |
1.0.13 | 144 | 11/2/2023 |
1.0.12 | 187 | 7/24/2023 |
1.0.11 | 162 | 7/22/2023 |