How to use INSTR with simple.data
I need to add a condition while joining 2 tables
select * from table A inner join table B on INSTR(A.Column , B.Column)>0
How to write this query using Simple.Data (c#)?
How to use INSTR with simple.data
I need to add a condition while joining 2 tables
select * from table A inner join table B on INSTR(A.Column , B.Column)>0
How to write this query using Simple.Data (c#)?
I can't test right now if this will work, but try:
db.A.FindAll().Join(db.B).On(db.A.Column.INSTR(db.B.Column) > 0);