You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generic Repository Pattern, DbContext, Multiple DbContext control in one unit of work, TransactionScope support
Dapper and EF both can use in one application.
Dapper and EF have their own repositories. IDapperRepository<Product>, IRepository<Product>
Dapper-EntityFramework works under same transaction and unit of work scope, if any exception appears in domain whole transaction will be rollback, including Dapper's insert/deletes and EF's.
Stove.Dapper supports Dynamic Filters to filter automatically and default ISoftDelete or other user defined filters.
Stove.Dapper also works with NHibernate under same transaction. Like EF transaction sharing.