动态 Linq 查询选项

问题描述 投票:0回答:2

我有一个表单,我正在将其序列化为 json 对象,如下所示:

Fruit: Apple,
StrawberyParam: "test",
AppleParam: 1,
PeachParam: 3,
Car: Porsche
BugattiParam:3,
PorscheParam: "gas",
ToyotaParam: "go",
AnotherParam: "test1"

基本上,用户选择水果和汽车,参数在其他属性中描述。

我正在考虑编写不同的 where 子句并将它们连接起来创建一个字符串,然后对其应用

.ToList
,如下所示:

StrawberryWhere = ....
AppleWhere = ....
PeachWhere = ....
PorscheWhere = ....
.....

然后写下这个:

MyQuery = fromClause + switch based on Fruit and Car selected
          (ie. AppleWhere + PorscheWhere) + selectClause;
MyQuery.ToList();

是这样的吗?我正在使用 linq-to-sql,但我对这个框架不是很熟悉。

c# linq linq-to-sql
2个回答
1
投票

你不会使用字符串,你会做这样的事情:

Expression<Func<TSource, bool>> appleWhere = x => x.Fruit == Fruits.Apple;
Expression<Func<TSource, bool>> porscheWhere = x => x.Car == Cars.Porsche;
// ...

var result = jsonObjects.Where(appleWhere).Where(porscheWhere).ToList();

© www.soinside.com 2019 - 2024. All rights reserved.