ok,
I have a database at location A which is the "master" and a database at location B. The databases will not be exactly the same. Approx half the tables will be identical. Now, tables at location B that are the same as at A will be readonly in the sense that no one at location b will be modifying those tables. But when something changes at A i need it propagated to B.
I dont really want to use replication. My plan was to use a web service and pass the entities. Now i want to use identity columns as PK in A which is no problem since the table at B are readonly. So a record gets created at A and propegates over a web service to B and its already unqiue.
So i generate two projects, one for each database. I can pass a single entiy over the webservices just fine. However it dumps when i try to pass an entitycollection due to the fact that when an enititycollection goes over the wire, it includes its type info and of course it cant find its type at location B since at location B its got a different type with the exact same data and fields.
Anyone got any ideas?