I've searched the forum for something like this but I've determined that my problem must be unique (yeah, right!
).
I have several different permutations of the same problem, but they all boil down to having a portion of the data stored in an accesible, but readonly, location; and another portion of the data stored in "my" database and being updatable.
I intially thought of creating DB views to pull the data together (in some cases it's extra fields, that are being added in the view, in other cases it's extra rows; but in both bases the "extra" data is the editable stuff), then create an entity on that view (the beta rocks!); and handle the updating of the table via a custom save to the table that underlies the "extra" data.
I'm now having second thoughts and I'm wondering whether it wouldn't be better to create the tables as separate entities and then merge them together in my DAL so that they appear as one entity at levels above that.
But that's as far as I got...
Does anyone have suggestions or recommendations or, better still, "I've done this exact thing and here's the code I used"? (A guy can hope!).
Thanks in advance