FndRecordSerializer Deserialize Method .net Access Provider Documentation
Deserializes FndDataRow to class instance. Handles all simple attributes (string, int, doubles etc) Can deserialize collections if they implement IList and property getter returns a precreated collection (preferably empty). That collection class must have an Add(SomeClass value) method. The FndRecordSerializer also supports classes implementing ISupportInitialize, in that case BeginInit will be called before properties are loaded and EndInit will be called after the last property have been loaded that that class.

Namespace: Ifs.Fnd.Data.Serialization
Assembly: Ifs.Fnd.Data (in Ifs.Fnd.Data.dll) Version: 4.0.0.0 (4.80.18.0)
Syntax

public Object Deserialize(
	FndDataRow row
)

Return Value

Type: OnlineObject
Deserialized object
Examples

FndRecordSerializer serializer = new FndRecordSerializer(typeof(SomeClass)); SomeClass source = ... // Init with data FndDataRow row = serializer.Serialize(source); SomeClass dest = (SomeClass)serializer.Deserialize(row, typeof(SomeClass));
See Also