Most Dynamic Data web sites typically only use a single database, with either a Linq To Sql or Entity Framework model over it. But in some cases, you need your site to use multiple databases/models. This came up today in this forum thread . In fact, the original poster (Chris) is the one that came up with a good solution, and that?s what my sample app in this post is doing (so credits to him!). The full sample is attached at the end, so feel free to get it now if you prefer! Note that I?ll cheat a little bit, by doing the following: I?ll only use one Northwind database (bear with me here!) I?ll create both a Linq To Sql and an Entity Framework model over it The main reason for doing this is to avoid having to include two MDF in the sample. There...(read more) ...
Go to the complete details ...