You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in C# string do not implement string comparison operands >, <, >=, <=.
As a result, it is impossible to provide lambda to Filter library function that compares string value to a constant.
Similar problem Azure Table API solves by specially handling methods in lambdas: string.CompareTo and string.Compare.
Hello All,
in C# string do not implement string comparison operands >, <, >=, <=.
As a result, it is impossible to provide lambda to Filter library function that compares string value to a constant.
Similar problem Azure Table API solves by specially handling methods in lambdas: string.CompareTo and string.Compare.
Can this functionality be added?