views:

9

answers:

1

I would like access a sql express db in multiple projects, a dynamic data project to administrate the data and a console application which fetches the data from the db, is there an option to do this? or should I use a SQL CE for this kind of scenario?

+1  A: 

A database is meant to be accessed from different clients. You can specify the same connection string in both projects, Dynamic Data and Console. SQL Server Express will handle traffic from both over the network easily.

You can use different data access strategies as well, in both projects. LINQ To SQL, DIY ADO, SubSonic, etc.

p.campbell