Rename ISubAsWithAttr

This commit is contained in:
sunkaixuan
2023-09-26 15:50:05 +08:00
parent fc55d845b8
commit 906ae14d8e
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ using System.Text;
namespace SqlSugar
{
public class ISubAsWithAttr : ISubOperation
public class SubAsWithAttr : ISubOperation
{
public bool HasWhere
{

View File

@@ -40,7 +40,7 @@ namespace SqlSugar
new SubDistinctCount{ Context=Context },
new SubToList{ Context=Context},
new SubFirst(){ Context=Context },
new ISubAsWithAttr(){ Context=Context }
new SubAsWithAttr(){ Context=Context }
};
}