skip to Main Content

Unable to use string-based methods on a string property inside an Azure storage table query lambda

While querying an Azure storage table I get an exception. Here is my query: tableClient.QueryAsync<Resource>(resource => resource.PartitionKey == projectId.ToString() && String.Equals(resource.FullName, fullName, StringComparison.InvariantCultureIgnoreCase)); resource.FullName and fullName are both of type string. But this incurs the exception... Incorrect number of arguments…

VIEW QUESTION
Back To Top
Search