I'm trying to use Esqueleto on an existing database and I encountered this problem : two columns that I need to join are of a different types. One is Integer (normal), the other (the "foreign key") is a String instead of being an Integer :-(
Writting the join in standard SQL works fine, but with Esqueleto, it complains that types mismtach (which is true but I don't care). Is there a workaround (like doing a 'convert' in Esqueleto or being able to add raw ON criteria) ??