0

我正在尝试使用 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();

我似乎找不到以这种方式插入的任何地方。

谢谢,

4

1 回答 1

0

这对我有用!

var col = db.GetCollection<Values>("customers");
col.Insert(list2);

谢谢,

于 2018-01-09T15:56:58.453 回答