0

我使用 Entity Framework 6 来访问 Oracle 数据库。我有一个类似以下的查询:

var query = db.Table
    .Where(x => x.Field1 == field1 || x.Field1 == "ConstantValue")
    .Where(x => x.Field2 == field2 || x.Field2 == "ConstantValue")
    .OrderByDescending(x => x.Field1)

当我执行它时,我收到以下错误:ORA-01008: not all variables bound

我知道这条消息通常意味着什么,但在这里没有任何意义。field1 和 field2 不为空。请问谁能帮我解决这个问题?

4

0 回答 0