我想知道如何将 console.writeline 数据存储在我的 litedb 数据库文件中。这是我的 POCO 课程
[BsonId]
public int Id { get; set; }
public DateTime Updated { get; set; }
public DateTime Last { get; set; }
public override string ToString()
{
return string.Format("Id : {0}, Updated : {1}, Last Message : {2}",
Id,
Updated,
Last);
}
我在数据库中插入信息:
using (var db = new LiteDatabase(_dbLocation))
{
var hist = db.GetCollection<MailBoxInfo>("History");
var mail = new MailBoxInfo
{
Updated = DateTime.Now,
Last = datemsg
};
hist.Insert(mail);
hist.EnsureIndex("Updated");
}
最后,尝试输出它:
using (var db = new LiteDatabase(_dbLocation))
{
var hist = db.GetCollection<MailBoxInfo>("History");
var res = hist.FindById(3);
}
然后我得到异常
“附加信息:无法为类型 'TanganTask.MailBoxInfo' 创建实例。检查是否有没有参数的公共构造函数”。
我在哪里弄错了,如何解决这个问题?