Best .NET3.5 based strategy for creating disconnected db application

后端 未结 5 489
傲寒
傲寒 2021-02-03 13:52

My requirements are:

  • Relatively small database: 25-30 tables with 4-5k rows in each.
  • 4-5 users with their own copies of local database on their laptops. Sync when
  • 5条回答
    •  心在旅途
      2021-02-03 14:22

      If there is a SQL Server (Standard or higher) already in place, you can use SQL Server Replication Services to sync local copies of the database to either a SQL Express or SQL Server Compact instance on the user's machine (both of these are free).

      For more information, try here.

      It sounds like you'd be looking at Merge replication scenario.

    提交回复
    热议问题