- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 SQLite-net ( https://github.com/praeclarum/sqlite-net ) 在 Android 上使用 Mono 实现数据库,并具有以下内容:
public class DatabaseTestASync
{
private SQLiteAsyncConnection m_db;
public delegate void StocksFound(List<Stock> list);
public event StocksFound StocksFoundListener;
// Uninteresting parts remove, e.g. constructor
public void AddStock(Stock stock)
{
m_db.InsertAsync(stock).ContinueWith(t => { Debug.WriteLine(stock.Symbol + " added"); });
}
public void GetAllStocks()
{
AsyncTableQuery<Stock> query = m_db.Table<Stock>().Where(stock => true);
query.ToListAsync().ContinueWith(QueryReturns);
}
private void QueryReturns(Task<List<Stock>> t)
{
if (StocksFoundListener != null)
StocksFoundListener(t.Result);
}
这非常适合给我一个股票列表,但我设想在我的项目中有一个表集合并且不想为每个表创建一个单独的 AddX、GetAllX、QueryReturns(X) 等。我正在寻找执行这些数据库操作的通用方法并尝试了以下操作:
public class DBQuery<T>
{
private SQLiteAsyncConnection m_db;
public delegate void OnRecordsFound(List<T> list);
public event OnRecordsFound RecordsFoundListener;
public DBQuery (SQLiteAsyncConnection db)
{
m_db = db;
}
public void GetAllRecords()
{
AsyncTableQuery<T> query = m_db.Table<T>().Where(r => true); // COMPILE ERROR HERE
query.ToListAsync().ContinueWith(QueryReturns);
}
private void QueryReturns(Task<List<T>> t)
{
if (RecordsFoundListener != null)
RecordsFoundListener(t.Result);
}
}
但是,它不会编译说:“T”必须是具有公共(public)无参数构造函数的非抽象类型,以便将其用作泛型类型或方法“DatabaseUtility.AsyncTableQuery”中的参数“T”。
关于如何使这种通用数据库访问正常工作,我有什么想法吗?
最佳答案
我不太了解 SQLite 的内部结构,但这完全是关于 generics
...
因为 AsyncTableQuery
是这样定义的
public class AsyncTableQuery<T>
where T : new ()
{
...或者只是根据您的错误,您需要对您的 T
施加相同的约束:
public class DBQuery<T> where T : new ()
If you're using a class or a method which has a
constrained generic
- you need to do the same on your method (or a class, depending on where the
parameterT
is defined).
关于c# - 使用 SQLiteAsyncConnection 在 SQLite-net C# 中创建通用查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16196292/
我在我的 Xamarin Android 项目中使用 sqlite-net-pcl 库( the one by Frank Krueger ,而不是 this fork by Øystein Krog
我正在尝试使用 SQLite.net 在我的 PCL 中实现 OneToMany 关系。我有异步扩展包(SQLiteNetExtensions.Async),并且我的代码基于 https://bitb
第一次使用SQLite,选择了SQLite.net-pcl , 我有一个 PCL 库,我从我的 UWP 应用程序使用它,我的 PCL 库有 DBContext 类: public NewspaperD
我指的是 http://timheuer.com/blog/archive/2012/08/07/updated-how-to-using-sqlite-from-windows-store-apps
我需要为 Windows 8 应用程序实现完全异步架构,我在数据层中使用 SQLite For winRT 和 SQLite.Net。 到目前为止我做了什么: DAL 上下文: public inte
我正在尝试从通过 Xamarin.forms 的 nuget 包 sqlite-net-pcl(1.5.166-beta) 访问的 sqlite 数据库表中删除所有项目。 方法DeleteAllAsy
我正在尝试使用 Visual Studio 在 Xamarin 解决方案中实现 SQLite。但是,我找不到实现 SQLiteAsyncConnection 的正确方法。 我正在学习一个教程,该教程只
我正在使用来自 https://github.com/oysteinkrog/SQLite.Net-PCL 的 Sqlite.net 的 PCL 版本 但是,我无法设置数据库连接。 SQliteAsy
我尝试使用以下代码,但它不起作用。 public void deleteRow(int index) { conn.QueryAsync("D
我正在使用 SQLite-net ( https://github.com/praeclarum/sqlite-net ) 在 Android 上使用 Mono 实现数据库,并具有以下内容: publ
我正在尝试使用最新版本的 sqlite-net-pcl nuget 包创建表 var db = new SQLiteAsyncConnection("data.db"); await db.Creat
我是一名优秀的程序员,十分优秀!