views:

24

answers:

1

I currently have an n-tier application using entity framework 4.0 and we're looking at synching the contents of database between redundant servers. Does anyone have any experience on tips on how best to approach a solution?

+2  A: 

From an architecture point of view, you need to consider if you want to do this at the application level or the database level.

At the application level you could write to both databases any time you made a change.

At the database level you could use the replication tools build into the database that you use.

You could also use a 3rd party tool. There is also a sync framework available from Microsoft.

Shiraz Bhaiji
sync framework is probably what I'm after thanks
JK