DevToys.PocoDB.Core
1.0.6
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package DevToys.PocoDB.Core --version 1.0.6
NuGet\Install-Package DevToys.PocoDB.Core -Version 1.0.6
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="DevToys.PocoDB.Core" Version="1.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DevToys.PocoDB.Core --version 1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DevToys.PocoDB.Core, 1.0.6"
#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 DevToys.PocoDB.Core as a Cake Addin #addin nuget:?package=DevToys.PocoDB.Core&version=1.0.6 // Install DevToys.PocoDB.Core as a Cake Tool #tool nuget:?package=DevToys.PocoDB.Core&version=1.0.6
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#Configuration
DataConfiguration.Instance.Add(
new ConnectionConfig()
{
Key = "OneOfMyConnections",
ConnectionTypeName = "SqlClient", // Available types: SqlClient, OleDb, Odbc ( can be extended for other types)
ConnectionString = @"Server=LAPTOP-GUIDO\SQLEXPRESS;Database=Misc;Trusted_Connection=True;"
}
);
#Samples
###Sql Server Table
Create table dbo.Company
(
Id int not null identity(1,1) primary key,
[Name] varchar(128) not null,
ZipCode varchar(16) not null,
)
go
###Poco Result object
public class Company
{
[DBField("Id")]
public int Id { get; set; }
[DBField("Name")]
public string Name { get; set; }
[DBField("ZipCode")]
public string ZipCode { get; set; }
}
###Poco Command Objects
[DBCommand(@"select id, [name], ZipCode from dbo.Company", commandtype: CommandType.Text)]
public class GetCompanyAll
{
}
[DBCommand(@"select id, [name], ZipCode from dbo.Company where id = @id", commandtype: CommandType.Text)]
public class GetCompanyById
{
[DBParameter("Id")]
public int Id { get; set; }
}
[DBCommand(@"insert into dbo.Company ([name], ZipCode)
values (@name, @ZipCode);
set @OutputId = @@IDENTITY", commandtype: CommandType.Text)]
public class InsertCompany
{
[DBParameter("OutputId", Direction = ParameterDirection.Output)]
public int Id { get; set; }
[DBParameter("name")]
public string Name { get; set; }
[DBParameter("ZipCode")]
public string ZipCode { get; set; }
}
###Executing and retrieving Data
var insert = new InsertCompany()
{
Name = "First Company",
ZipCode = "ABCD12"
};
var operationInsert = new DbCommandOperation<InsertCompany>("OneOfMyConnections");
operationInsert.ExecuteNonQuery(insert);
var operationGetAll = new DbCommandOperation<Company, GetCompanyAll>("OneOfMyConnections");
List<Company> result1 = operationGetAll.ExecuteReader(new GetCompanyAll() { }).ToList();
// Short hand (no parameters for GetCompanyAll
List<Company> result2 = operationGetAll.ExecuteReader().ToList();
int _newId = insert.Id;
var operationSingle = new DbCommandOperation<Company, GetCompanyById>("OneOfMyConnections");
Company result2 = operationSingle.ExecuteSingleReader(new GetCompanyById() { Id = _newId });
#Inject Third party DataProviders ( typeof : DbConnection )
ConnectionFactory.Instance.AddType<FbConnection>("FireBirdClient");
DataConfiguration.Instance.Add(
new ConnectionConfig()
{
Key = "MyFireBirdConnection",
ConnectionTypeName = "FireBirdClient",
ConnectionString = @"datasource=192.168.178.11;database=EMPLOYEE.FDB;username=SYSDBA;password=blabla;"
}
);
#Bulk Insert (SqlClient Only)
[DBBulkInsert("dbo.Company")]
public class BulkCompany
{
[DBParameter("Id")]
public int Id { get; set; } = 0;
[DBParameter("Name")]
public string Name { get; set; } = string.Empty;
[DBParameter("ZipCode")]
public string ZipCode { get; set; } = string.Empty;
}
List<BulkCompany> _data = new List<BulkCompany>();
for (int ii = 0; ii < 10000; ii++)
_data.Add(new BulkCompany() { Name = "MyCompany", ZipCode = "1234AB" });
BulkInsertOperation<BulkCompany> operation = new BulkInsertOperation<BulkCompany>("OneOfMyConnections", 2096);
// operation.Progress += Operation_Progress;
operation.Insert(_data);
#Working with Transactions
// Delete all companies outside Transaction.
var deleteoperation = new DbCommandOperation<DeleteAllCompanies>("OneOfMyConnections");
deleteoperation.ExecuteNonQuery();
var operation1 = new DbCommandOperation<InsertCompanyByProcedure>("OneOfMyConnections");
var operation2 = new DbCommandOperation<InsertCompanyBySqlStatement>("OneOfMyConnections");
using (DbConnection connection = operation1.CreateConnection())
{
// operation1.CreateConnection() : operation1 determines the connection to use.
// the result is the same as operation2.CreateConnection(), they both create a ConnectionObject from Config "Local"
connection.Open();
using (DbTransaction transaction = connection.BeginTransaction())
{
try
{
InsertCompanyByProcedure insert1 = new InsertCompanyByProcedure()
{
Name = "A Company Name",
ZipCode = "4555AA"
};
operation1.ExecuteNonQuery(connection, transaction, insert1);
int newId = insert1.Id;
// Too large ZipCode
InsertCompanyBySqlStatement insert2 = new InsertCompanyBySqlStatement()
{
Name = "A Company Name ",
ZipCode = "4555AA TO LONG AAAAAAAAAAAbbbbbbbbbbbAAAAAAAAA TO LONG"
};
operation2.ExecuteNonQuery(connection, transaction, insert2);
int newId2 = insert2.Id;
transaction.Commit();
}
catch (Exception exception)
{
transaction.Rollback();
}
}
connection.Close();
}
#Bulk Random Data ( SqlClient Only )
[DBBulkInsert("dbo.Company")]
public class BulkCompanyRandom
{
[DBRandomParameter("Id")]
public int Id { get; set; } = 0;
[DBRandomParameter("Name", RandomStringType = RandomStringType.FullName)]
public string Name { get; set; } = string.Empty;
[DBRandomParameter("HouseNumber", RandomStringType = RandomStringType.Number, Min = 10, Max = 200)]
public string HouseNumber { get; set; } = string.Empty;
}
BulkInsertOperation<BulkCompanyRandom> operation = new BulkInsertOperation<BulkCompanyRandom>("Local", 512);
operation.Insert(1000);
#Insert Random Data
[DBCommand(@"insert into dbo.Company ([name])
values (@name);
set @OutputId = @@IDENTITY ", commandtype: CommandType.Text)]
public class InsertCompanyRandom
{
[DBParameter("OutputId", Direction = ParameterDirection.Output)]
public int Id { get; set; }
[DBRandomParameter("name")]
public string Name { get; set; }
}
var operation = new DbCommandOperation<InsertCompanyRandom>("Local");
InsertCompanyRandom parameters = new InsertCompanyRandom() { };
for (int ii = 0; ii < 50; ii++)
{
operation.ExecuteNonQuery(parameters);
int newId = parameters.Id;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- System.Data.SqlClient (>= 4.8.2)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on DevToys.PocoDB.Core:
Package | Downloads |
---|---|
DevToys.PocoDB.BulkInsert.Core
Bulkinsert wrapper on DevToys.PocoDB Readme: https://www.nuget.org/packages/DevToys.PocoDB.BulkInsert.Core/#readme-body-tab |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.6 | 245 | 12/22/2023 |
1.1.5 | 260 | 4/7/2023 |
1.1.3 | 235 | 3/22/2023 |
1.1.2 | 653 | 1/28/2022 |
1.1.0 | 5,471 | 11/23/2021 |
1.0.9 | 456 | 8/26/2021 |
1.0.8 | 345 | 8/25/2021 |
1.0.7 | 322 | 8/20/2021 |
1.0.6 | 337 | 4/6/2021 |
1.0.5 | 338 | 4/5/2021 |
1.0.4 | 362 | 4/5/2021 |
1.0.3 | 363 | 4/4/2021 |
1.0.2 | 374 | 4/4/2021 |
1.0.1 | 338 | 4/4/2021 |
1.0.0 | 405 | 4/4/2021 |