I have one solution in VS2010 containing two MVC 3 projects. These are two distinct applications that must act on the same data, so I need my database to be shared between these projects.
I would like to use SQL CE 4, but since it is an in-memory, local database, I could not figure out a way to make it available for two different projects. All tutorials I've come across so far suggest that you place your SDF file in the App_Data folder, which won't work out for my case.
Have any of you managed to do that yet?
Thanks in advance!