I am not sure how to do this, new with azure, i am using "public interface IMobileServiceSyncTable : IMobileServiceSyncTable" of Azure and to fetch the records from one particular table, i am using below in a method: "query = table.CreateQuery(); await table.PullAsync(typeof(T).Name, query);"
this gets me all the records of this particular table, now i wish to pass a parameter viz USERID, so i get only those records that belongs to this user.
Can anyone help me with an example for this?
Also it would be great if there is an example to fetch data with multiple parameters.
Thanks in Advance.