Does DBMethods support .NET Remoting?
The final release (version 1.0.3910) fully supports .NET Remoting by accommodating serializable objects and marshal-by-reference objects (objects that derive from System.MarshalByRefObject). DBMethods primarily deals with data access methods. If those methods are part of a type that can be marshaled by-reference, then .NET Remoting is supported in the usual way. Serializable types were not supported in previous beta builds (like v1.0.3504) primarily because the concrete type that is fabricated at runtime is not serializable. In the final release (build 3910), serializable types are fully supported, whether they depend on the Serializable attribute to provide the functionality or implement it themselves using custom serialization via the ISerializable interface. The VS .NET custom tool and the SqlMethods command-line tool allow you to specify a base class for the types they generate. By default the type will inherit from System.Object, but you can specify MarshalByRefObject to have inst