SqlSugar/Src/Asp.NetCore2/SqlSugar.QuestDb.RestApi/HttpExtensions.cs
2024-03-21 02:21:52 +08:00

16 lines
326 B
C#

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