- 增加 ColumnAttribute Precision/Scale 设置;

This commit is contained in:
28810
2020-07-31 03:07:13 +08:00
parent af153295f8
commit 73c87513d2
9 changed files with 235 additions and 163 deletions

View File

@ -113,7 +113,7 @@ namespace FreeSql.Odbc.SqlServer
{
case "First":
case "FirstOrDefault":
return $"substr({getExp(callExp.Arguments[0])}, 1, 1)";
return $"substring({getExp(callExp.Arguments[0])}, 1, 1)";
}
}
}