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
public class Item
{
public string Name { get; set; } = String.Empty;
public string Description { get; set; } = String.Empty;
public int? Year { get; set; }
}
.filter(item, func)=> func.Contains(func.Concat(func.Cast(item.Year, "'Edm.String'")), searchBy)
cause error : cannot convert int to string;
should be equivalent to $filter=contains(concat(cast(Year, 'Edm.String')), {searchBy});
The text was updated successfully, but these errors were encountered:
I want to do a search for
.filter(item, func)=> func.Contains(func.Concat(func.Cast(item.Year, "'Edm.String'")), searchBy)
cause error : cannot convert int to string;
should be equivalent to
$filter=contains(concat(cast(Year, 'Edm.String')), {searchBy});
The text was updated successfully, but these errors were encountered: