OpenAuth.Net/OpenAuth.Repository/SqlSugarRepository.cs

18 lines
406 B
C#
Raw Permalink Normal View History

using SqlSugar;
2023-08-27 00:23:45 +08:00
namespace OpenAuth.Repository
2023-08-27 00:23:45 +08:00
{
/// <summary>
/// SqlSugar仓储
/// <para>具体用法参考https://www.donet5.com/Home/Doc?typeId=1228</para>
/// </summary>
public class SqlSugarRepository<T> : SimpleClient<T> where T : class, new()
{
public SqlSugarRepository(ISqlSugarClient client)
{
base.Context = client;
}
2023-08-27 00:23:45 +08:00
}
}