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.SerializationAssembly: Ifs.Fnd.Data (in Ifs.Fnd.Data.dll) Version: 4.0.0.0 (4.80.18.0)
Syntax
Parameters
- row
- Type: Ifs.Fnd.Data FndDataRow
FndDataRow to deserialize
Return Value
Type:
Deserialized object
Examples
See Also