在 crm 2011 中,在一个实体中,我必须通过 CRM Restkit 从自定义实体中检索名字字段。运行代码时出现错误。我认为“过滤器”是错误的。
如果是系统实体,则filter = "ContactId eq guid'"+Xrm.Page.data.entity.attributes.get('xyz' ).getValue( )[0].id+"'";
工作正常。
但我的情况是,它是一个模式名称为“new_student”的自定义实体,我尝试了filter = "new_student/Id eq guid'"+Xrm.Page.data.entity.attributes.get('xyz' ).getValue( )[ 0].id+"'"; 这是行不通的。
那么在我的情况下过滤器应该是什么
问候,维克拉姆