GenericDapperRepo.Wrapper 3.1.1

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

// Install GenericDapperRepo.Wrapper as a Cake Tool
#tool nuget:?package=GenericDapperRepo.Wrapper&version=3.1.1

GenericRepo.Dapper.Wrapper

This is a c# library that provides a simple Generic Repository to fluently map model properties with database columns using Dapper to interact with the Database.


Introduction

This Dapper wrapper allows you to fluently configure the mapping between model properties and database columns. This keeps your model clean of mapping attributes. Also you do not have to rewrite SQL query each time you want to interact with different table through Dapper. This guy handles all of that by providing functions that wrap specific dapper functions into generic functions. It does not only end there, this library allows us to also manipulate data in the database using stored procedures. Therefore, add that into what we call generic repository.

NuGet Support
Latest version 3.0.1 All C# stack (.Net Core, .Net Framework, .Net Standard and many more)

Dependencies

  • Dapper
  • Newtonsoft.Json
  • System.Data.SqlClient
  • MySql.Data
  • Oracle.ManagedDataAccess.Core
  • System.Data.SQLite.Core
  • Npgsq

Download

Install-Package GenericDapperRepo.Wrapper -Version 3.0.1

Usage

Key Description
Id Id is a table key
keyName keyName is a unique Column name ie primary key (Id, code).
namesOfPropertiesToBeExcluded names of columns that their values cannot be changed/columns that are keys ie Composite key, Id Number, Foreign Key, Candidate Key etc. You can provide as many as you want.
T entity T represent the table/entity.
public interface IRepository<T>
{
  Task<IEnumerable<T>> GetAllAsync();
  Task<T> GetAsync(object id, string keyName);
  Task<IEnumerable<T>> GetAllAsync(object id, string keyName);
  Task<int> InsertAsync(T entity, params string[] namesOfPropertiesToBeExcluded);
  Task<int> UpdateAsync(string keyName, T entity, params string[] namesOfPropertiesToBeExcluded);
  Task<int> DeleteAsync(object id, string keyName);
}
  • Update, Insert and Delete returns number of rows affected after executing the method
  • This is how your specific repository declaration should look like
public class PersonRepository
{
  private readonly IRepository<Person> _personRepository;
  private const string TableName = "dbo.Persons";  //NB: prefix the table schema your table belongs to
  private const string keyName = "Code";

  
  public PersonRepository(string connectionString, DatabaseProvider databaseProvider)
  {
    _personRepository = new Repository<Person>(TableName, connectionString, databaseProvider);
  }
}
  • Database Provider names
public enum DatabaseProvider
{
  MsSql = 1,
  MySql = 2,
  Oracle = 3,
  SqLite = 4,
  PostGreSql = 5
}
  • Your function implementation should look like this :
public async Task<IEnumerable<Person>> GetAllPeopleAsync()
{
  return await _personRepository.GetAllAsync();
}
  • For other available functions check IRepository interface provided at the top

Working with Stored Procedures

Usage

Key Description
connectionString A connection string is a string that specifies information about a data source, means of connecting to it.
databaseProvider Enum that contains different database provider names ie MsSql, MySql, Oracle, PostGreSql n SqLite.
procName Name of the stored procedure that will be using to query/manipulate data.
parameters These are key-value pairs that are required when calling stored procedure.
object Key-value pairs/object that consist of a name(s) that are tied to the stored procdure variable(s).
T entity T is the model.
public interface IStoredProcProcessor
{
  Task<IEnumerable<T>> GetDataAsync<T>(string procName, object parameters = null);
  Task<int> ExecuteAsync(string procName, object parameters);
  Task<int> ExecuteInBulkAsync(string procName, object @object );
}
  • Parameters are optional base on the created stored procedure
  • This is the only way to create StoredProcProcessor instance :
  IStoredProcProcessor storedProcProcessor = new StoredProcProcessor(ConnectionString, DatabaseProvider.MySql);
  • GetDataAsync returns number of records in a list. This function is used to query data from Database
  • ExecuteAsync() and ExecuteInBulkAsync() return number of rows affected after execution. These functions are to be used for data manipulation (Add, Delete and Update)

Configuration to consume ExecuteInBulkAsync()

async Task<int> ExecuteInBulkAsync(string procName, object @object );
  • Constructing an object has been made easy by the use of a utility/helper class called DataTableProcessor. This utility maps data to DataTable but feel free to use your own helper if you want to.
public static class DataTableProcessor
{
  public static DataTable MapToDataTable<T>(List<T> list); //maps any model into DataTable
  public static DataTable MapToDataTable(string jsonObject); //maps json data into DataTable
}
  var listOfEmployees = ListOfEmployees();  // data type : List<RegisterEmployeeModel>
  var dataTable = DataTableProcessor.MapToDataTable(listOfEmployees);
            // OR
  var dataTable = DataTableProcessor.MapToDataTable(GetJsonData()); //takes json data

  var obj = new { employeeType = dataTable };
  var results = await sut.ExecuteInBulkAsync(storedProcName, obj);
  • NB : employeeType is the variable name in the stored procedure. This name must match exactly the variable name in the store procedure. Variable name is case sensitive.
  • You can add more than one property inside the object as long as your stored procedure takes those arguments(parameters)

If you have any questions, suggestions, bugs or want to contribute, please don't hesitate to contact :-

  • spantshwa.lukho@gmail.com
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
3.3.1 63 6/17/2024
3.2.1 67 6/16/2024
3.1.1 62 6/12/2024
3.0.1 70 6/9/2024
3.0.0 74 6/9/2024
2.1.1 131 9/22/2023
2.1.0 403 7/11/2022
2.0.0 402 7/9/2022
1.2.1 267 1/7/2022
1.2.0 299 4/12/2021

Removed keyNotFoundException in GetAsync, it is a bug to throw an exception when item is not found.