- 合并 FreeSql.DbContext 项目至 FreeSql 维护;

This commit is contained in:
28810
2019-06-26 10:09:26 +08:00
parent a708062c97
commit 611c066481
185 changed files with 4577 additions and 95 deletions

View File

@ -0,0 +1,10 @@

namespace FreeSql {
public class DbContextOptions {
/// <summary>
/// 是否开启一对多,联级保存功能
/// </summary>
public bool EnableAddOrUpdateNavigateList { get; set; } = true;
}
}