I am working with Entity Spaces and need to run following query
select * from MyTable WHERE (Age * 10) IN (50, 60, 70)
ES version is
query.Where((query.Age * 10).In(AgesList));
This generates following invalid query (Age * 10
is missing)
select * from MyTable WHERE IN (50, 60, 70)
Any solution to produce desired query?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…