What does the following exception means?
System.NotSupportedException was unhandled Message: An unhandled exception of type 'System.NotSupportedException' occurred in mscorlib.dll Additional information: Fluent methods may not be invoked on a Query created via CloudTable.CreateQuery()
It does not show the code throwing the exception so I don't know how to start debugging it.
Result StackTrace: at System.Web.Http.ApiController.d__1.MoveNext() --- End of inner exception stack trace --- at System.Threading.Tasks.Task.ThrowIfExceptional(Boolean includeTaskCanceledExceptions) at System.Threading.Tasks.Task
1.GetResultCore(Boolean waitCompletionNotification) at System.Threading.Tasks.Task
1.get_Result() at TestFramework.ExecuteRequest(HttpRequestMessage request) in d:\ at TestFramework.Post(String uri, Object tniObject) in d:\ at TestFramework.PostCall(String uri, Object o) in d:\ at TestFramework.MyMethod(String one, String two, MyStruct three) in d:\ ... (Removed for privacy)
I believe the problem is in the following instruction.
string queryString = TableQuery.CombineFilters(TableQuery.GenerateFilterCondition("PartitionKey", QueryComparisons.Equal, myId),
TableOperators.And,
TableQuery.GenerateFilterCondition("RowKey", QueryComparisons.Equal, number));
var theQuery = MyTable.CreateQuery<MyEntity>().Where(queryString);
can I use theQuery
then to perform a segmented async query?
var returnList = new List<T>();
TableQuerySegment<T> querySegment = null;
querySegment = await theQuery.AsTableQuery().ExecuteSegmentedAsync(null);
// The query could potentially return more than one object
returnList.AddRange(querySegment);
Well, changing the CreateQuery
method call to the following code made the exception to go away.
var query = new TableQuery<TenantTNEntity>().Where(queryString);
The exception I get now says:
Result Message: Test method MyMethod threw exception:
System.AggregateException: One or more errors occurred. ---> System.InvalidOperationException: Unknown Table. The TableQuery does not have an associated CloudTable Reference. Please execute the query via the CloudTable ExecuteQuery APIs.