Tagged Questions
1
vote
0answers
80 views
CRM 2011 generated code using ICodeWriterFilterService fails to build
Using the sample code at http://erikpool.blogspot.com/2011/03/filtering-generated-entities-with.html I have altered this so that GenerateEntity and GenerateOptionSet to have the code:
return ...
1
vote
2answers
617 views
CrmDataContext.GetEntities query - ERROR: 0x80040204 - Invalid user auth
I created domain user 'jsmith' in Active Directory and i've added that domain account as a user in Dynamics CRM. My goal here is to execute code with a service account that is in the PrivUserGroup ...
1
vote
3answers
537 views
Differences between Microsoft CRM and xRM
I am browsing the new xrm.com page and I find it lacks some concrete information of what does it means.
Could you please explain what are the main differences between Microsoft CRM and xRM? What ...
0
votes
1answer
70 views
FetchExpression results appear to be cached, how do I prevent this?
I am using a FetchExpression against a RetrieveMultiple operation on a CrmOrganizationServiceContext within a windows service to fetch and process items out of a queue.
The first time this runs this ...
0
votes
0answers
35 views
Advanced Developer Extensions for CRM 4.0: Closing the underlying TCP connection to CrmService
How do you ensure the the underlying TCP connection gets closed when performing CrmService operation via the CrmDataContext provided by the Microsoft.Xrm.Client dll?
Neither CrmDataContext nor ...
0
votes
1answer
109 views
Dynamics CRM: null value and GetPropertyValue<T>()
Let's say I have the code below:
public class ContactDTO
{
public string Email {get; set;}
public decimal? ExchangeRate {get; set;}
}
......
var contacts = crm.GetEntities("contact")
var ...
0
votes
1answer
137 views
Best practice for populating a model object
Suppose I have few model classes like Person.cs, Car.cs, Manufacturer.cs each of which has 30-40 properties of varying datatypes. These models have to be populated using a Linq based framework called ...