SqlSugar/Src/Asp.Net/SqlSugar/Realization/Custom/CustomProvider.cs
2022-01-25 17:25:28 +08:00

17 lines
347 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SqlSugar
{
public class CustomProvider
{
internal static ISugarQueryable<T> GetQueryable<T>(string dbName, string dllName)
{
throw new NotImplementedException();
}
}
}