Click or drag to resize

TypedMapperIterateT Method

Iterates over this typedmapper calling the provided function

Namespace:  NetQuarry.Data
Assembly:  EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public void Iterate<T>(
	Action<T> func
)
where T : new(), TypedMapper

Parameters

func
Type: SystemActionT
The action function to use for the operation.

Type Parameters

T
The class type for the object. This should be your topmost derived class.
See Also