mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 12:28:15 +08:00
- 增加 ICodeFirst.IsGenerateCommandParameterWithLambda 选项,开启表达式解析的命令参数化;
- 增加 ExpressionCallContext 自定义函数上下文档 DbParameter 属性; - 修复 IncludeMany(a => a.x1.x2.Childs) 当 x1, x2 为 null 的报 null 错误;
This commit is contained in:
@ -31,6 +31,10 @@ namespace FreeSql
|
||||
/// </summary>
|
||||
bool IsNoneCommandParameter { get; set; }
|
||||
/// <summary>
|
||||
/// 是否生成命令参数化执行,针对 lambda 表达式解析
|
||||
/// </summary>
|
||||
bool IsGenerateCommandParameterWithLambda { get; set; }
|
||||
/// <summary>
|
||||
/// 延时加载导航属性对象,导航属性需要声明 virtual
|
||||
/// </summary>
|
||||
bool IsLazyLoading { get; set; }
|
||||
|
Reference in New Issue
Block a user