Linq 谓词查询结果不适用于进一步的 Linq Join
本文关键字:Linq 进一步 Join 适用于 不适用 谓词 查询 结果 | 更新日期: 2023-09-27 17:55:31
我正在使用谓词查询的结果在Linq查询中编写连接。但它抛出以下错误。但是,当我在SQL中运行类似的查询时,它会返回预期的结果。
var predicate = PredicateBuilder.False<Product>();
foreach (var productId in productIds)
{
var tempGuid = productId;
predicate = predicate.Or(p => p.ProductId== tempGuid.ToString());
}
// This query is returning products back
var products = from p in context.ProductSet.AsExpandable().Where(predicate)
select p;
var accounts = (from a in context.AccountSet
join cl in context.ContractDetailSet
on a.AccountId equals cl.AccountId.Id
join p in products on '' From predicate query
cl.ProductId.Id equals p.ProductId
where a.StateCode == AccountState.Active
select a).ToList();
注意:我最后删除了ToList(),它不会抛出错误,但是当您尝试使用帐户对象时,它会再次抛出相同的错误。
错误
Microsoft.Xrm.Sdk 中发生了类型为"System.NullReferenceException"的异常.dll但未在用户代码中处理。
其他信息:对象引用未设置为对象的实例。
以下对
我完美有用,将Linq
替换为QueryExpression
。
var qe = new QueryExpression {EntityName = "account", ColumnSet = new ColumnSet()};
qe.ColumnSet.Columns.Add("name");
qe.LinkEntities.Add(new LinkEntity("account", "contractdetail", "accountid", "accountid", JoinOperator.Inner));
qe.LinkEntities[0].Columns.AddColumns("productid", "title");
qe.LinkEntities[0].EntityAlias = "contractdetails";
// Check Account State
FilterExpression accountState = qe.Criteria.AddFilter(LogicalOperator.And);
accountState.Conditions.Add(new ConditionExpression("statecode", ConditionOperator.Equal, 0));
FilterExpression productFilter = qe.LinkEntities[0].LinkCriteria.AddFilter(LogicalOperator.Or);
foreach (var product in products)
{
var condition = new ConditionExpression
{
AttributeName = "productid",
Operator = ConditionOperator.Equal
};
condition.Values.Add(product.ProductId);
productFilter.Conditions.Add(condition);
}
EntityCollection resultsCollection = _OrgService.RetrieveMultiple(qe);
有关QueryExpression
的更多详细信息,请查看以下链接。
- 使用 QueryExpression 检索多个
- 使用条件表达式