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 version 6.2.24 or older we could write the following query: var q = $"NpgsqlDbFunctionsExtensions.ILike(EF.Functions, People.Name, \"%{value}%\")";
In version 6.2.25 this is no longer working and exception of type System.Linq.Dynamic.Core.Exceptions.ParseException is thrown: No property or field 'Functions' exists in type 'EF'..
Description
In version 6.2.24 or older we could write the following query:
var q = $"NpgsqlDbFunctionsExtensions.ILike(EF.Functions, People.Name, \"%{value}%\")";
In version 6.2.25 this is no longer working and exception of type System.Linq.Dynamic.Core.Exceptions.ParseException is thrown: No property or field 'Functions' exists in type 'EF'..
A similar problem occurs for base EF function
Like
. The way we use this is also discussed in the following question in stack overflow (see the answer there):https://stackoverflow.com/questions/65221784/using-dynamic-linq-with-ef-functions-like
The text was updated successfully, but these errors were encountered: