This commit is contained in:
2881099
2022-09-06 17:00:31 +08:00
parent 9eab104259
commit 090abfd36a
48 changed files with 1919 additions and 29 deletions

View File

@ -0,0 +1,12 @@
using FreeSql;
using System;
using System.Linq;
using System.Linq.Expressions;
public static class FreeSqlAggregateRootRepositoryGlobalExtensions
{
public static IBaseRepository<TEntity> GetAggregateRootRepository<TEntity>(this IFreeSql that) where TEntity : class
{
return new AggregateRootRepository<TEntity>(that);
}
}