How can I assign initial value to myQuery where I am appending conditions using AND and a foreach loop.
I am trying to do the following:
string myQuery = string.empty;
foreach (string myCondition in myConditionLists)
{
myQuery = TableQuery.CombineFilters(
myQuery,
TableOperators.And,
TableQuery.GenerateFilterCondition(nameof(MyClass.MyProperty),
QueryComparisons.NotEqual, myCondition));
}
When I debug, I see an initial statement of "()" which doesn't seem right. Another approach would be to assign query the first element into myQuery and grow from the second element. Is there an elegant way to do this?
You can specify an integer value and in your loop it adds 1 for each iteration. When it equals 1, you set the initial value to myQuery string.
The sample code is below:
My table:
The test result: