- 补充 使用 IsIgnore 忽略后,表达式再使用时的友好错误提示;

This commit is contained in:
28810
2019-08-13 17:17:38 +08:00
parent dce7496b01
commit 79ab3ae217
5 changed files with 40 additions and 22 deletions

View File

@ -6,11 +6,17 @@ namespace FreeSql
{
internal IFreeSql _fsql;
internal DbContextOptions _options;
public DbContextOptionsBuilder UseFreeSql(IFreeSql orm)
{
_fsql = orm;
return this;
}
public DbContextOptionsBuilder UseOptions(DbContextOptions options)
{
_options = options;
return this;
}
}
}