I've been trying to get myself into some EntityFramework lately.
My Problem now is pretty much the same as in this question, but the solutions given there seem quite 'workaround' and dodgy.
I want changes saved to the database with dbContext.SaveChanges() to affect the actual database I created within the project and not one that is generated each time I run the Code. Since I will use this in a project at work I'd like to know if there is a smoother, cleaner way than the ones proposed in the linked question.
I tried to change data source in app.config from the original (LocalDB)\MSSQLLocalDB;attachdbfilename=|DataDirectory|\Database.mdf to the direct path (I guess that is not the way it works though).