views:

72

answers:

1

What is the usage of Local Database Cache project type in Visual Studio?

+2  A: 

It creates a SQL Compact database in the client app.

It also sets up all the code, prep work, for both client and server sides, to synchronize the compact database with the server one occasionally, via a WCF service.

leppie