This commit is contained in:
sunkaixuna 2021-11-19 18:12:19 +08:00
parent 7242c38152
commit 7050a293b2
2 changed files with 3 additions and 2 deletions

View File

@ -10,8 +10,6 @@ namespace SqlSugar
{
private SqlSugarProvider context;
private ISugarQueryable<T> queryable;
private string AsName { get; set; }
private int Size { get; set; }
private EntityInfo entityInfo { get; set; }
public FastestProvider(SqlSugarProvider sqlSugarProvider)
{

View File

@ -8,6 +8,9 @@ namespace SqlSugar
{
public partial class FastestProvider<T> : IFastest<T> where T : class, new()
{
private string AsName { get; set; }
private int Size { get; set; }
public IFastest<T> AS(string tableName)
{
this.AsName = tableName;