"public List Query(string query, params object[] args)" method does not return matching objects when a query is passed with a 'LIKE' clause with a token of Unicode characters in WinRT 8.1 app.
Eg:
SELECT *
FROM Item
WHERE ItemType IN (4,3) And SearchText Like '%本%' And IsReady = 1 And FilesAvailable = 1;
This query returns expected results when queried directly from sqlite db3 file using SQLite Studio like tools.
"public List Query(string query, params object[] args) " method does not return matching objects when a query is passed with a 'LIKE' clause with a token of Unicode characters in WinRT 8.1 app.
Eg:
SELECT *
FROM Item
WHERE ItemType IN (4,3) And SearchText Like '%本%' And IsReady = 1 And FilesAvailable = 1;
This query returns expected results when queried directly from sqlite db3 file using SQLite Studio like tools.
I think this is the same issue mentioned here https://github.com/praeclarum/sqlite-net/issues/226