Dapper.FluentExecution 0.1.0

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

// Install Dapper.FluentExecution as a Cake Tool
#tool nuget:?package=Dapper.FluentExecution&version=0.1.0

Dapper - Fluent Execution

dapper-fluent-execution NuGet Nuget

This package is a simple, easy and fluent way to execute SQL on database connection by Dapper.

Installation

You can install the package using one of the options bellow:

  • Package Manager
PM> NuGet\Install-Package Dapper.FluentExecution -Version 0.1.0
  • .NET CLI
dotnet add package Dapper.FluentExecution --version 0.1.0
  • PackageReference
<PackageReference Include="Dapper.FluentExecution" Version="0.1.0" />

Usage

Simple query:

public async Task<List<Person>> GetAllAsync(CancellationToken cancellation = default)
{
    return await "SELECT * FROM Persons"
        .On(DatabaseConnection)
        .QueryAsync<Person>(cancellation)
        .ToListAsync();
}

Querying with parameter:

public async Task<Person?> GetByIdAsync(int id, CancellationToken cancellation = default)
{
    return await "SELECT * FROM Persons where Id = @Id"
        .On(DatabaseConnection)
        .WithParameter("@Id", id)
        .QuerySingleOrDefault<Person>(cancellation);
}

Querying with conditional parameter and append:

public async Task<Person?> GetByIdAsync(int id, int? specificAddressId, CancellationToken cancellation = default)
{
    return await "SELECT p.* FROM Persons p inner join Addresses a on a.PersonId = p.Id where Id = @Id"
        .On(DatabaseConnection)
        .AppendSql(specificAddressId.HasValue, "AND a.Id = @AddressId")
        .WithParameter(specificAddressId.HasValue, "@AddressId", specificAddressId)
        .WithParameter("@Id", id)
        .QuerySingleOrDefault<Person>(cancellation);
}

TODO - v0.1.0

  • Describe all classes/methods with summaries
  • Create pipeline yml on Github
  • Finish the Usage topic on README
  • Create a Github repository to push code
  • Create an integration test
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.

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.2.0 275 1/29/2023
0.1.1 248 1/26/2023
0.1.0 301 1/25/2023