- FreeSql.Generator 支持 core 2.1 2.2 3.0 3.1

This commit is contained in:
28810
2019-12-18 12:16:58 +08:00
parent fe5b98509b
commit e2624ed8ee
4 changed files with 161 additions and 135 deletions

View File

@ -240,7 +240,7 @@ namespace FreeSql.Internal.CommonProvider
}
public TSelect Master()
{
_select = " SELECT ";
_select = $" {_select.Trim()} ";
return this as TSelect;
}
public TSelect Offset(int offset) => this.Skip(offset) as TSelect;