作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试检索其“requiredattendees”包含在帐户列表中的实体之一上的约会。 requiredattendees 有一种 PartyList。我的查询看起来像:
var query = new QueryExpression("appointment")
{
ColumnSet = columnSet,
Criteria = new FilterExpression(LogicalOperator.Or)
};
并添加条件:
GetAccounts()
.Select(a => new ConditionExpression("requiredattendees", ConditionOperator.Contains, a.Id))
.ForEach(c => query.Criteria.AddCondition(c));
a.Id is the account guid.
我收到以下错误:
Cannot add attribute requiredattendees of type partylist in a condition
System.ServiceModel.FaultException`1[[Microsoft.Xrm.Sdk.OrganizationServiceFault, Microsoft.Xrm.Sdk, Version=5.0.0.0, Culture=neutral]]
最佳答案
此代码用于服务预约,但如果我没记错的话,预约也是一样的。希望这有帮助
QueryExpression qe = new QueryExpression
{
EntityName = "serviceappointment",
Criteria = new FilterExpression
{
FilterOperator = LogicalOperator.And,
Conditions =
{
new ConditionExpression
{
AttributeName = "scheduledstart",
Operator = ConditionOperator.LessThan,
Values =
{
endTime
}
},
new ConditionExpression
{
AttributeName = "scheduledend",
Operator = ConditionOperator.GreaterThan,
Values =
{
startTime
}
}
}
},
LinkEntities =
{
new LinkEntity
{
LinkFromEntityName = "activitypointer",
LinkFromAttributeName = "activityid",
LinkToEntityName = "activityparty",
LinkToAttributeName = "activityid",
LinkCriteria = new FilterExpression
{
FilterOperator = LogicalOperator.And,
Conditions =
{
new ConditionExpression
{
AttributeName = "partyid",
Operator = ConditionOperator.Equal,
Values =
{
someEntity.id
}
}
}
}
}
}
};
关于c# - 带有 PartyList 的 QueryExpression 中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28352177/
我正在制作一个插件,它会触发自定义事件短信的创建消息。这些插件将使用第三方短信服务提供商发送实际短信。 因此我需要在 SMS 事件的“收件人”字段中获取每个联系人的手机号码。这是一个类型的字段:Par
我正在尝试检索其“requiredattendees”包含在帐户列表中的实体之一上的约会。 requiredattendees 有一种 PartyList。我的查询看起来像: var query =
由于CRM 2011 IE10 在线问题,我们决定将所有前端JavaScript 从Soap 转换为oData。一切顺利,我安装了 oData 设计器,将查询集中在函数中,但是当我尝试检索 Servi
我是一名优秀的程序员,十分优秀!