using FreeSql; using System; using System.Linq; using System.Linq.Expressions; public static class FreeSqlAggregateRootRepositoryGlobalExtensions { public static IBaseRepository GetAggregateRootRepository(this IFreeSql that) where TEntity : class { return new AggregateRootRepository(that); } }