我使用OrganizationServiceProxy从CRM服务器获取所有字段值。但是它只返回使用的字段值。它没有未使用的自定义字段值。 :(。如何从crm2011获取所有自定义字段值。?
using (ServiceContext svcContext = new ServiceContext(cons.createProxy(logfilePath)))
{
var contactlist =(from a in svcContext.ContactSet
where a.new_proid.Equals(contact_id)
select a);
}
" new_proid"是自定义字段。它不可用,但所有其他默认值都可用。