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

Popular posts from this blog

PySide and Qt Properties: Connecting signals from Python to QML -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

scala - 'wrong top statement declaration' when using slick in IntelliJ -