To following query fails with a nullreferenceexception var activeContacts = from c in provider.Linq<contact>() where c.statecode.Value == ContactState.Active select c...
[Reported my mraufer] This query fails: var contacts = from c in provider.Linq<contact>() join a in provider.Linq<account>() on c.parentcustome...
I needed to write a query like var query = from c in provider.Linq<contact>() where c.createdon.UserTime <= DateTime.Now select new { c.fullname } Using "where c.cre...
http://live.mscommunity.net/blogs/dadamec/archive/2008/02/29/linq-to-xsd-alpha-0-2-refresh-for-visual-studio-2008.aspx
Running the following query will generate an array where the number of elements is equal to the number of users in the system but where each element refers to the same user:
* First: Should be implemented with some combination of skip/take [Postponed until implementation of proper selector as it will require rearchitecting the result builder anyway] * Sum and Average: ...
It is not possible to query a N:N relationship due to the fact that the relation is made up of a hidden relationship entity which is not exposed through the crm webservice. So my guess is, that we ...