I have the starting AccountId and Ending AccountId and want to fetch all accounts between them using SOAP Partnet API in Dot Net
How can i get this sort of Query to work correctly in SOQL
SELECT Id, Name FROM Account WHERE Id >= 'XXXXXXXXXXXp9ZEAAZ' AND Id <= 'XXXXXXXXXXVOZwyAAH'
It doesn't complain syntax wise but not returning any records
Please help!