RowConverter BSONDocumentToRow Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Converts BSON document into Row by filling the supplied row instance making necessary type transforms to suit Row.Schema field definitions per target name. If the passed row supports IAmorphousData, then the fields either not found in row, or the fields that could not be type-converted to CLR type will be stowed in amorphous data dictionary

Namespace: NFX.Serialization.BSON
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public virtual void BSONDocumentToRow(
	BSONDocument doc,
	Row row,
	string targetName,
	bool useAmorphousData = true,
	Func<BSONDocument, BSONElement, bool> filter = null
)
See Also