Faactory.DbContext.RestSql
0.8.1-preview-1
dotnet add package Faactory.DbContext.RestSql --version 0.8.1-preview-1
NuGet\Install-Package Faactory.DbContext.RestSql -Version 0.8.1-preview-1
<PackageReference Include="Faactory.DbContext.RestSql" Version="0.8.1-preview-1" />
<PackageVersion Include="Faactory.DbContext.RestSql" Version="0.8.1-preview-1" />
<PackageReference Include="Faactory.DbContext.RestSql" />
paket add Faactory.DbContext.RestSql --version 0.8.1-preview-1
#r "nuget: Faactory.DbContext.RestSql, 0.8.1-preview-1"
#:package Faactory.DbContext.RestSql@0.8.1-preview-1
#addin nuget:?package=Faactory.DbContext.RestSql&version=0.8.1-preview-1&prerelease
#tool nuget:?package=Faactory.DbContext.RestSql&version=0.8.1-preview-1&prerelease
ADO.NET Extensions
This project contains a set of extensions to help with managing multiple data sources, more specifically, inside a DI scenario.
Getting started
Before we can use the extensions, we need to register the context provider with our DI container. We'll have to install the appropriate package, depending on the provider we want to use; the following are currently supported
Provider | Package | Description |
---|---|---|
PostgreSql | Faactory.DbContext.Npgsql | PostgreSQL driver; uses Npgsql |
SqlServer | Faactory.DbContext.SqlClient | SQL Server driver; uses Microsoft.Data.SqlClient |
Sqlite | Faactory.DbContext.Sqlite | SQLite driver; uses Microsoft.Data.Sqlite |
SqlServer | Faactory.DbContext.RestSql | SQL Server via restSQL; still experimental |
We'll use SqlServer as an example
dotnet add package Faactory.DbContext.SqlClient
We'll then register the provider and configure our databases; we can add as many contexts as we need. We can also add different providers if we need to access different types of databases.
IServiceCollection services = ...;
services.AddSqlDbContextProvider()
.AddDbContext( "my-db", "connection_string" )
.AddDbContext( "my-other-db", "connection_string" );
Wherever we need to get access to our database context, we'll use the injected IDbContextFactory
instance to retrieve an IDbContext
instance.
public class Example
{
private readonly IDbContext mydb;
public Example( IDbContextFactory dbContextFactory )
{
mydb = dbContextFactory.GetDbContext( "my-db" );
}
// ...
}
To construct a new connection, we'll retrieve it from the IDbContext
instance.
public class Example
{
private readonly IDbContext mydb;
// ...
public async Task DoSomethingAsync()
{
using var connection = mydb.GetDbConnection();
await connection.OpenAsync();
// ...
}
}
We can also construct the connection and open it all in one go.
public async Task DoSomethingAsync()
{
using var connection = await mydb.OpenAsync();
// ...
}
From this point forward, we'll have a DbConnection
instance ready to use. Please note that all DbConnection
instances should be properly disposed after use. Most of the ADO implementations will pool connections and not properly disposing them can lead to exceeding the number of open connections (connection leaks).
Starting with version 0.6, the library has switched to use the DbConnection
class instead of the IDbConnection
interface. This was done mostly because the interface doesn't expose the async methods. Since DbConnection
should be the base class for most (if not all) ADO.NET providers, this transition shouldn't cause any braking changes. Nonetheless, if you're using the IDbConnection
interface explicitly in your code, you'll have to update it to use the DbConnection
class instead.
Transactions
As an alternative to the DbConnection.BeginTransaction[Async]
methods, there are extensions available to shorten the amount of code written. The WithTransaction[Async]
methods take care of opening/reusing a connection, creating a transaction and gracefully disposing of it all when finished.
public async Task DoSomethingAsync()
{
await mydb.WithTransactionAsync( async t =>
{
var sqlCommand = t.Connection.CreateCommand();
// ...
await t.CommitAsync();
} );
}
If an exception is thrown, the transaction is automatically rolled back. Whether the transaction was successful or not, along with the exception (if any), is returned in a DbTransactionResult
instance.
public async Task DoSomethingAsync()
{
var result = await mydb.WithTransactionAsync( async t =>
{
var sqlCommand = t.Connection.CreateCommand();
// ...
await t.CommitAsync();
};
if ( !result.Succeeded )
{
// e.g. log the exception
// loggers.LogError( result.Exception, "Transaction failed" );
}
// we can also force the exception to be thrown
result.ThrowIfFailed();
}
Health checks
The library also provides a set of health checks that verify the status of the database contexts. These health checks can be used with the ASP.NET Core health checks middleware.
IServiceCollection services = ...;
services.AddHealthChecks()
.AddDbContext( "my-db" )
.AddDbContext( "my-other-db" );
Command builder
The command builder is a helper class that can be used to build SQL commands. It provides a fluent interface to build a DbCommand
instance. The builder can be accessed by calling the BuildCommand
extension method on DbConnection
instances.
private readonly IDbContext mydb;
// ...
public async Task UseBuilderFromConnectionAsync()
{
using var connection = await mydb.OpenAsync();
var command = connection.BuildCommand()
.SetText( "SELECT * FROM table WHERE id = @id" )
.AddParameter( "@id", 1 )
.Build();
using var reader = await command.ExecuteReaderAsync();
// ...
}
Query extensions
It's also possible to execute a query and map the results directly by providing a mapper function. This can be useful when we don't want to use a full-blown ORM for simple queries or we just want the benefits of a more direct mapping.
private readonly IDbContext mydb;
// ...
public async Task QueryAsync()
{
using var connection = await mydb.OpenAsync();
var results = await connection.ExecuteQueryAsync( "SELECT id, name FROM table", reader =>
{
return new
{
Id = reader.GetInt32( 0 ),
Name = reader.GetString( 1 )
};
} );
}
The same can be achieved directly from the IDbContext
instance, however, it's important to acknowledge that this route will grab a new connection from the pool for each call. If you intend to execute multiple commands in a row, you should first obtain and open a connection yourself.
private readonly IDbContext mydb;
// ...
public async Task QueryAsync()
{
var results = await mydb.ExecuteQueryAsync( "SELECT id, name FROM table", reader =>
{
return new
{
Id = reader.GetInt32( 0 ),
Name = reader.GetString( 1 )
};
} );
}
Non-query and scalar extensions
The library provides a few extensions to simplify the execution of non-query commands and scalar queries. These extensions are available on the DbConnection
class.
private readonly IDbContext mydb;
// ...
public async Task ExecuteNonQueryAsync()
{
using var connection = await mydb.OpenAsync();
await connection.ExecuteNonQueryAsync( "DELETE FROM table WHERE id = @id", new { id = 1 } );
}
public async Task ExecuteScalarAsync()
{
using var connection = await mydb.OpenAsync();
var result = await connection.ExecuteScalarAsync<int>( "SELECT COUNT(1) FROM table" );
}
The same can be achieved directly from the IDbContext
instance. Similarly to the query extensions, it's important to acknowledge that this route will grab a new connection from the pool for each call. If you intend to execute multiple commands in a row, you should first obtain and open a connection yourself.
private readonly IDbContext mydb;
// ...
public async Task ExecuteNonQueryAsync()
{
await mydb.ExecuteNonQueryAsync( "DELETE FROM table WHERE id = @id", new { id = 1 } );
}
public async Task ExecuteScalarAsync()
{
var result = await mydb.ExecuteScalarAsync<int>( "SELECT COUNT(1) FROM table" );
}
Compatibility with Object Mappers
The library is fully compatible with most object mappers that use DbConnection
or IDbConnection
instances, such as Dapper, PetaPoco or Norm.net.
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. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- Faactory.DbContext.Core (>= 0.8.1)
- Faactory.RestClient (>= 0.4.0)
- Microsoft.Extensions.Http (>= 9.0.1)
- Microsoft.Extensions.Options (>= 9.0.1)
-
net9.0
- Faactory.DbContext.Core (>= 0.8.1)
- Faactory.RestClient (>= 0.4.0)
- Microsoft.Extensions.Http (>= 9.0.1)
- Microsoft.Extensions.Options (>= 9.0.1)
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 |
---|---|---|
0.8.1-preview-1 | 81 | 1/25/2025 |
0.7.2-preview-1 | 89 | 8/27/2024 |
0.7.1-preview-1 | 73 | 8/27/2024 |
0.7.0-preview-1 | 100 | 5/31/2024 |
0.6.1-preview-1 | 79 | 3/8/2024 |
0.6.0-preview-2 | 207 | 11/20/2023 |
0.6.0-preview-1 | 95 | 9/27/2023 |
0.5.2-preview-2 | 104 | 9/26/2023 |
0.5.2-preview-1 | 96 | 9/25/2023 |