function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Mel LisauMel Lisau 

How can i convert a SOQL query to strongly typed dataset or JSON result

I have the following query:

var queryResult = binding.query("SELECT Id, Username, LastName, FirstName, Name, IsActive FROM User");

I get 7 records , but how can i convert this to a dataset or list or JSON using C# in order to perform Linq operations ?

thanks
AbhishekAbhishek (Salesforce Developers) 
https://stackoverflow.com/questions/27803571/how-to-get-soql-inner-query-as-strongly-typed-object-c

Your query is answered above.

Check it.