我正在尝试使用 LiteDB,我有以下内容:
var list2 = new List<Values>();
我一直在查看以下 LiteDB 示例:
// Get customer collection
var col = db.GetCollection<Customer>("customers");
var customer = new Customer { Id = 1, Name = "John Doe" };
// Insert new customer document
col.Insert(customer);
// Update a document inside a collection
customer.Name = "Joana Doe";
col.Update(customer);
// Index document using a document property
col.EnsureIndex(x => x.Name);
有什么方法可以在我的情况下插入类型值列表: var list2 = new List();
我似乎找不到以这种方式插入的任何地方。
谢谢,