mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-26 04:32:50 +08:00
11 lines
211 B
C#
11 lines
211 B
C#
|
|
namespace FreeSql {
|
|
public class DbContextOptions {
|
|
|
|
/// <summary>
|
|
/// 是否开启一对多,联级保存功能
|
|
/// </summary>
|
|
public bool EnableAddOrUpdateNavigateList { get; set; } = true;
|
|
}
|
|
}
|