imun.Dade 0.0.1

dotnet add package imun.Dade --version 0.0.1
NuGet\Install-Package imun.Dade -Version 0.0.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="imun.Dade" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add imun.Dade --version 0.0.1
#r "nuget: imun.Dade, 0.0.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 imun.Dade as a Cake Addin
#addin nuget:?package=imun.Dade&version=0.0.1

// Install imun.Dade as a Cake Tool
#tool nuget:?package=imun.Dade&version=0.0.1

"Dade" is implementation of UnitOfWork and Repository pattern over Dapper mini-ORM. Dade provides EntityFramework's like way for working with data using Dapper mini-ORM. You can use this library to achieve UnitOfWork and Repository pattern with Dapper to create your Data-Access layer in some way like EF.

Sample usage

First thing first, install it via NuGet : Install-Package imun.Dade

In your data-access layer project, create repository or DataSet for each of your entities. Suppose you have two entities Blog and Post. Add two class named BlogSet and PostSet which will inherits from DadeSet class.

using imun.Dade;
namespace Blog.Core.Data.Repositories
{
    public class BlogSet: DadeSet<Blog, int>
    {
        protected PersonSet(IDbTransaction transaction) : base(transaction)
        {
        }
    }
}
using imun.Dade;
namespace Blog.Core.Data.Repositories
{
    public class PostSet: DadeSet<Post, int>
    {
        protected PersonSet(IDbTransaction transaction) : base(transaction)
        {
        }
    }
}

Well, that's it for repositories! Now add another class named DbContext or something like that to act as DbContext!

public class DbContext: DadeContext
{
    public DbContext(IUnitOfWorkFactory unitOfWorkFactory) : base(unitOfWorkFactory)
    {
    }

    public BlogSet Blogs { get; set; }
    public PostSet Posts { get; set; }
}

About

Dade means Data in Farsi!

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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.0.1 437 3/12/2020

Beta release of library.