Hi all! I'm use LLBLGen 4.2 and PostgreSQL 9.4. Self-Servicing
I need to implement this part of query:
"WHERE CAST(number AS character varying) LIKE '10%'"
Number - bigint
When I use : "new FieldLikePredicate(ProductFields.Number, $"{searchNumber}%")"
It's throw exception: "An exception was caught during the execution of a retrieval query: 42883: operator does not exist: bigint ~~ character varying. Check InnerException, QueryExecuted and Parameters of this exception to examine the cause of this exception."
It is possible to implement? Thanks