mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-16 16:50:41 +08:00
17 lines
347 B
C#
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();
|
|
}
|
|
}
|
|
}
|