- return (from ActionRule ar in db.ActionRuleSet.Include("ConditionExpression")
- select new ActionRuleDataDTO()
- {
- Expresions = (from ConditionExpression ce in ar.ConditionExpression
- select new RuleExpressionDTO()
- {
- Type = ce.Operator,
- BoolOperator = ce.NextExpressionOperator
- }).ToArray()
- }).ToArray();
LINQ to Entities does not recognize the method 'EhrAdmin.Services.MSSQL.DTO.RuleExpressionDTO[] ToArray[RuleExpressionDTO](System.Collections.Generic.IEnumerable`1[EhrAdmin.Services.MSSQL.DTO.RuleExpressionDTO])' method, and this method cannot be translated into a store expression.
I'll revisit this when i get a chance but the fix at the moment is to convert ObjectQuery<actionrule> to List<actionrule> using the ToList() method.
No comments:
Post a Comment