Updated 表达式函数 (markdown)

IGeekFan
2021-11-15 09:49:54 +08:00
parent 98844f2b97
commit 6c38e0830d

@@ -12,7 +12,7 @@ where = where.Or(b => b.num > 0);
动态拼接``Or``,通过``Or``扩展方法动态拼接``Lambda``表达式
```csharp
Expression<Func<T, bool>> where = null;
Expression<Func<T, bool>> where = null;
if (xxx)
{
where = where.Or(b => b.num > 0);