I need to get from the table "TableTest". "ID" of the string "DollarTest" where the value is "DollarTest" between "50.20" and "40" AND the value is "Euro Test" between "60" and "70.50"
How to do this for SQLite Xamarin forms?
IDGet = (await App.Database.GetItemsAsync()).Where(x => )
... I don’t understand how to implement this at all. Is it possible to make this query in MySQL and use it? How?
'TableTest', 'DollarTest BETWEEN 50.20 AND 40 AND EuroTest BETWEEN 60 AND 70.50'