Поскольку я использую SQLiteAsyncConnection вместо SQLiteConnection , я получаю следующую ошибку:
Could not find an implementation of the query pattern for source type 'AsyncTableQuery<User>'. 'Select' not found.
Это моя реализация:
public IEnumerable<User> GetUsers()
{
return (from user in database.Table<User>() select user).ToList();
}
Пространство имен:
using SQLite;
using System.Linq;
Есть идеи?
Заранее спасибо.