SqlSugar/Src/Asp.NetCore2/SqlSugar.QuestDb.RestApi/QuestDbSqlSugarClientExtensions.cs
2024-03-21 02:43:44 +08:00

16 lines
332 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public static class QuestDbSqlSugarClientExtensions
{
public static QuestDbRestAPI RestApi(this ISqlSugarClient db)
{
return new QuestDbRestAPI(db);
}
}
}