How to make DataSet transparently remoted, or proxied, or called by ref?  
Author Message
vgrigor





PostPosted: .NET Remoting and Runtime Serialization, How to make DataSet transparently remoted, or proxied, or called by ref? Top

How to make DataSet transparently remoted, or proxied, or called by ref

I have some DataSets that work in main AppDomain of application,
(it is huge, so I want to connect to it, not load each time)

but I want to move it to separate server, so in one mode I want to place
DataSet in separate app and in second mode- to use it in main AppDomain.

Usual way for it to have object inherited from Marshal-by-ref,
but DataSet already inherited from by Value,
so simple approach is not working,

so question is-
can I create transparent proxy for my Dataset, custom or not - by else way

Thanks you



.NET Development12