Row CopyFields Method NFX Class Library

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

Copies fields from this row into another row/form. Note: this is shallow copy, as field values for complex types are just copied over

Namespace: NFX.DataAccess.CRUD
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public void CopyFields(
	Row other,
	bool includeAmorphousData = true,
	bool invokeAmorphousAfterLoad = true,
	Func<string, Schema..::..FieldDef, bool> fieldFilter = null,
	Func<string, string, bool> amorphousFieldFilter = null
)

Parameters

other
Type: NFX.DataAccess.CRUD Row
includeAmorphousData (Optional)
Type: OnlineSystem Boolean
invokeAmorphousAfterLoad (Optional)
Type: OnlineSystem Boolean
fieldFilter (Optional)
Type: OnlineSystem Func OnlineString, Schema FieldDef, OnlineBoolean 
amorphousFieldFilter (Optional)
Type: OnlineSystem Func OnlineString, OnlineString, OnlineBoolean 
See Also