如何将创建的web应用程序集成到MSCRM2011中?

Answered 如何将创建的web应用程序集成到MSCRM2011中?

All Replies

  • Wednesday, April 18, 2012 3:45 AM
     
     Answered

    用这个RetrieveEntityRequest 得到实体的名称然后再去找

    RetrieveAttributeRequest 去找属性值

    RetrieveEntityRequest retrieveBankAccountEntityRequest = new RetrieveEntityRequest
    {
        EntityFilters = EntityFilters.Entity,
        LogicalName = _customEntityName
    };
    RetrieveEntityResponse retrieveBankAccountEntityResponse = (RetrieveEntityResponse)_serviceProxy.Execute(retrieveBankAccountEntityRequest);


    windows live Id :hellohongfu@hotmail.com

    • Marked As Answer by Jemas Yang Thursday, April 19, 2012 8:01 AM
    •