1

Is it possible to create a .NET Core REST API which will contain an embedded database (possibly .mdf file) and still deploy it on other OS like Linux? I know that SQL Server can be installed on Linux but can this be done silently within the application's installation program?

1 Answer 1

3

There are a number of different options. Some that you might want to consider:

  1. SqlLite (relational)
  2. LiteDb (nosql)
  3. DBreeze (key-value)
Sign up to request clarification or add additional context in comments.

1 Comment

I wouldn't recommend LiteBD, we've had tons of issues with concurrency. "File is in use by another process" all over the place.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.