Using INSTR (oracle function) in Simple.Data -
how use instr simple.data
i need add condition while joining 2 tables
select * table inner join table b on instr(a.column , b.column)>0
how write query using simple.data (c#)?
i can't test right if work, try:
db.a.findall().join(db.b).on(db.a.column.instr(db.b.column) > 0);
Comments
Post a Comment