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