Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道如何将 Csv 导入 LiteDB。我搜索了很多,但没有得到解决方案。我正在使用 asp.net core 3.1 razor pages 构建一个单页网站,并将我的数据存储在 LiteDB 中。现在我有数据要导入,但我不知道如何导入。
简单的方法
var json = JsonSerializer.Serialize(new BsonArray(db.Engine.Find("mycol"))); db.Engine.Insert("mycol", JsonSerializer.Deserialize(json).AsArray.ToArray());