-
-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Version
2.16.3
Details
internal class GuidInOperator : IGridifyOperator
{
public string GetOperator() => "#In";
public Expression<OperatorParameter> OperatorHandler()
{
return (prop, value) => ((List<Guid>)value).Contains((Guid)prop);
}
}
this is code for applying IN operator against Guid it is working for single guid but not for multiple with ; separated
Steps to reproduce
cribId#In05136e65-9f02-48f3-8570-14e9dba51c13 -- working
cribId#In05136e65-9f02-48f3-8570-14e9dba51c13;906EBECA-9508-4D05-AAB2-A157936A8365 -- not working
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request