- 增加 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

@ -54,5 +54,11 @@ namespace FreeSql.Extensions.EfCoreFluentApi
//{
// return this;
//}
public EfCoreColumnFluent HasPrecision(int precision, int scale = 0)
{
_cf.Precision(precision, scale);
return this;
}
}
}