I am trying to serialize an object that has a DataAccessAdapter property. I am getting an error that DatabaseSpecific.DataAccessAdapter is Not marked as serializable. This is LLBL 1.0.2004.2 (the 10-10-2005 release)
Correct, as it has a live connection internally. So serializing the dataaccessadapter makes no sense.
Workaround: mark it as [NonSerialized] and re-map a live dataaccessadapter instance when you re-instantiate the object.
Thanks... that worked great