0

我正在尝试将 Odata 和 web-api 与 mongoDb 一起使用。web-api 库在 IQueryable 中应用 linq 查询以对其进行查询。我需要支持的查询之一涉及演员表。web-api 返回一个带有表达式的 IQueryable

value.where(it => ((it.property as Child).Value == "example"));

这导致

Unable to determine the serialization information for the expression:
<TypeAs>it.Property.Value

有没有办法在我获得 IQueryable 后修改表达式,以便它执行 is检查然后进行强制转换,因为 C# 驱动程序支持这一点。或者是否有已经提供这种支持的库?

4

0 回答 0