I'm new to noSQL and trying to use litedb.
I want to change the location of the db storage.
Right now this code:
using (var db = new LiteDatabase(@"MyData.db"))
{
}
Creates the database at projectName\bin\Debug
Is there a way to create the DB from the root of the project?
Is there a reason to leave the DB there? Maybe I'm wrong trying to do this.
Any help is appreciated!!!