Dear all,
I have a property in the user code region of an entity class:
string _customerTitle = string.Empty;
public string CustomerTitle {
get {
return this._customerTitle;
}
set {
this._customerTitle = value;
}
}
// __LLBLGENPRO_USER_CODE_REGION_END
I have a web service that returns instances of this entity class. I use XmlSchemaImporter to generate a web service proxy. With llblgen v2.5 the user code property will survive xml serialization and hence be available at the web service client.
The property does however not survive viewstate serialization. Is there anything I can do to include it?
Thanks,
Tore.