- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在后期绑定(bind)中,我会使用类似这样的东西来添加仅获取事件记录的条件。
new ConditionExpression
{
AttributeName = "statecode",
Operator = ConditionOperator.NotEqual,
Values = { SomeClass.Active }
}
但是我该如何在后期绑定(bind)中表达呢?
另外,为什么 MS demand to cast it to String而不是int?
When you create a condition that compares an attribute value to an enumeration, such as a state code, you must use the ToString method to convert the value to a string.
最佳答案
有点像
ConditionExpression condition1 = new Microsoft.Xrm.Sdk.Query.ConditionExpression
{
AttributeName = "statecode",
Operator = ConditionOperator.Equal,
Values = { "Active" } //or SomeEnum.Active.ToString() if you want use good practice
};
应该可以正常工作。
编辑:另一种选择是将枚举转换为 int:Values = {(int)SomeEnum.Active}
关于c# - 如何在早期绑定(bind)的状态代码上为 QueryExpression 创建 ConditionExpression?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18292436/
我正在为从 API 级别 8 到 14 的 android 开发一个应用程序。我正在尝试在早期版本中获得与 android 4(请参阅联系人应用程序)相同的快速滚动行为(右侧固定的时尚滚动条)边)。有
早期(编译期)优化 jvm的编译器可以分为三个编译器: 前端编译器:把*.java转变为*.class的过程。如sun的javac、eclipse jdt中的增量式编译器(ecj)
苹果终于推出了所谓的auto-renewable subscriptions昨天。由于我在应用内购买方面的经验很少(仅限沙盒),所以我不确定我在这里是否一切顺利。似乎需要对收据进行服务器端验证。找出订
已结束。此问题不符合 Stack Overflow guidelines .它目前不接受答案。 要求代码的问题必须表明对正在解决的问题的最低理解。包括尝试的解决方案、它们为什么不起作用以及预期结果。另
在 Wagner 的“Effective C#”第 23 项中,他解释说 interface methods are not virtual...they are a declaration of a
我最近遵循了本指南 Installing a Git Server using Apache (WebDAV) on Ubuntu Server 12.04使用 Apache (WebDAV) 设置本
这是我之前的问题 jQuery UI hiding not taking effect for early DOM elements 的后续问题。我几乎刚刚编辑了那个,但不想使 the accepte
我正在尝试替换 ZonedDateTime.toInstant方法,因为它仅从 API 26 for Android 开始可用。 但我的应用程序应该支持 API 19。 我想将 ZonedDateTi
我的电脑正确配置了 SSH,我在尝试克隆存储库时遇到了这个错误: 我运行这个命令来克隆存储库 git clone ssh://git-codecommit.us-west-2.amazonaws.co
我是一名优秀的程序员,十分优秀!