fix issue #I7X427 vs2019打开OpenAuth.Net 6.0异常

This commit is contained in:
yubaolee
2023-08-30 13:51:37 +08:00
parent 8e3e2f9f45
commit bddf2d4f64
7 changed files with 26 additions and 19 deletions

View File

@@ -1,16 +1,17 @@
using System.Collections.Generic;
using SqlSugar;
using SqlSugar;
namespace OpenAuth.Repository;
/// <summary>
/// SqlSugar仓储
/// <para>具体用法参考https://www.donet5.com/Home/Doc?typeId=1228</para>
/// </summary>
public class SqlSugarRepository<T>: SimpleClient<T> where T : class, new()
namespace OpenAuth.Repository
{
public SqlSugarRepository(ISqlSugarClient client)
{
base.Context=client;
/// <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;
}
}
}
}