Questions tagged [litedb]

Use this tag for questions about LiteDB, which is a a free, open-source, embedded NoSQL database for .NET available via nuget or direct download.

LiteDB is a free, open-source, embedded NoSQL database for .NET inspired by MongoDB. Because it is a serverless document store, LiteDB can be "installed" via NuGet or by copying a dll into your project's bin folder.

Resources

Related Tags

183 questions
-1
votes
1 answer

LiteDB Viewer : Selected file is invalid or not supported

I have a data.db file and I want to delete some data so use this code : using (var db = new LiteDatabase("Filename=data.db;upgrade=true")) { var collection = db.GetCollection("capture"); //show db count…
BazSaraa
  • 11
  • 4
-1
votes
1 answer

Commit update log file to main db file

I have a question about LiteDB. I make an asp.net mvc application to interact with LiteDB. But all data change only save in log.db file. How can I update to main db file? Thanks!
-1
votes
1 answer

dotNet C# DataGridView Databinding performance

I hava a DatagridView with a BindingSource with ~5000 DataItems comming from a LiteDB Source. Those DataItems have a little preview picture included. My Problem and Question is: Can I improve the performance of the Databind somehow? Or do I using it…
Michele
  • 6,126
  • 2
  • 41
  • 45
1 2 3
12
13