Embedded Database for .net that can run off a network

后端 未结 11 1563
轮回少年
轮回少年 2020-12-28 12:57

I was (and still am) looking for an embedded database to be used in a .net (c#) application. The caveat: The Application (or at least the database) is stored on a Network dr

11条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-28 13:26

    This question is now ancient, and a lot has changed. For my specific purposes, LiteDB is the option of choice. It's open source and has a GitHub Repository.

    Apart from that, SQLite is basically the industry standard for embedded databases. There are attempts to port the code to .NET, but the prime use case involves a native library (e.g., the sqlite Nuget package) and/or a .NET P/Invoke wrapper like Microsoft.Data.SQLite.

提交回复
热议问题