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
Public Sub Iterate(Of T As {New, TypedMapper}) (
func As Action(Of T)
)
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