I use ormlite with servicestack and I have got this problem. I have saved a list of string in a column of my db so I want to do a select sql like this: Select top 1 * From MyTable Where MyVariable In (MyListSavedInDb)
var orders = db.Select<Order>(o => Sql.In(o.Ldv, o.Waybills));
Where o.Ldv is a string and o.Waybills is a list of string saved on db
Any solutions ?