imun.Dade
0.0.1
dotnet add package imun.Dade --version 0.0.1
NuGet\Install-Package imun.Dade -Version 0.0.1
<PackageReference Include="imun.Dade" Version="0.0.1" />
paket add imun.Dade --version 0.0.1
#r "nuget: imun.Dade, 0.0.1"
// 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 | Versions 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. |
-
- Dapper (>= 1.50.1)
- Dapper.Contrib (>= 1.50.0)
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 | 479 | 3/12/2020 |
Beta release of library.