Web Service request
Is anyone aware of how you can limit the number of records returned in a web service?
Currently in my appSettings I have a key that looks like this:(this is the Account record type)
<add key="CRMAccountQuery" value=" ([IndexedPick0] LIKE '*') AND (([bTestCompany] IS NULL) OR ([bTestCompany]='N'))" />But this pulls all the recordsI can add a datemodifed value but it cannot be a function. This works:
([ModifiedDate] > '05/01/2013')" />
But I do not want to have to change this value every month.
So if I add a function like DateTime.Now.AddDays(-30) the value is ignored.