SqlSugar/Src/Asp.NetCore2/SqlSugar.QuestDb.RestApi/QuestDbSqlSugarClientExtensions.cs

16 lines
332 B
C#
Raw Normal View History

2024-03-21 02:21:52 +08:00
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
2024-03-21 02:43:44 +08:00
public static class QuestDbSqlSugarClientExtensions
2024-03-21 02:21:52 +08:00
{
public static QuestDbRestAPI RestApi(this ISqlSugarClient db)
{
return new QuestDbRestAPI(db);
}
}
}