I am developing an application with open data hosted by socrata using the information from the below link http://dev.socrata.com/consumers/examples/creating-an-application-with-asp-dotnet.html How ever you need to specify the API end point in the code.
private const string _APIEndPoint4x4 = “4tka-6guv”;
Suppose there are 5000 records in the data set, it will list all the data in your applications. But you can change the end point by filtering this data by login in to socrata and saving it. For example we can filter the data say with year 2015 which will give us 100 records. When next time you run the application it will show only 100 records(We dont need to change API end point in code). I have gone through Soql query methods in Socrata which say you can set the api end points with conditions like this
https://soda.demo.socrata.com/resource/4tka-6guv?$where=magnitude > 3.0
My question is how can i use this in my application? I tried
private const string _APIEndPoint4x4 = "4tka-6guv?$where=magnitude > 3.0”;
But it gives the following error
The provided resourceId is not a valid Socrata (4x4) resource identifier.