diff --git a/表达式函数.md b/表达式函数.md index 06db0b0..c88fc34 100644 --- a/表达式函数.md +++ b/表达式函数.md @@ -12,7 +12,7 @@ where = where.Or(b => b.num > 0); 动态拼接``Or``,通过``Or``扩展方法动态拼接``Lambda``表达式 ```csharp -Expression> where = null; +Expression> where = null; if (xxx) { where = where.Or(b => b.num > 0);