Hi,
I'm having a problem in using a GridForeignColumn, where the Field and ForeignKeyField both are strings. However, since the values look like a guid, the URI is formatted as a Guid and fails. All relevant models and database values are of the type String.
This fails:
https://localhost:7230/odata/Customer/101?$filter=(No eq ac589e91-077e-49f1-a5b0-0e1767b49fe7)
and causes the following error.
"The query specified in the URI is not valid. A binary operator with incompatible types was detected. Found operand types 'Edm.String' and 'Edm.Guid' for operator kind 'Equal'."
This works as intended:
https://localhost:7230/odata/Customer/101?$filter=(No eq 'ac589e91-077e-49f1-a5b0-0e1767b49fe7')