Click or drag to resize
IMapper Interface
Defines Mapper class methods

Namespace: Jeneva
Assembly: Jeneva.Net-1.1 (in Jeneva.Net-1.1.dll) Version: 1.1.0.0 (1.1.0.0)
Syntax
public interface IMapper

The IMapper type exposes the following members.

Methods
  NameDescription
Public methodFilterT
If implementd, recursively copies data from the incoming domain object to the outgoing one, taking serialization levels into account. If a property does not conform to the requested serialization level - it will be assigned NULL. Must be called before sending data to client.
Public methodFilterListT
If implementd, recursively copies data from the incoming domain object list to the outgoing one, taking serialization levels into account. If a property does not conform to the requested serialization level - it will be assigned NULL. Must be called before sending data to client.
Public methodMapT
If implementd, recursively goes through fields of incoming domain object and assigns (back-references) parents to nested objects. Must be called before on incoming data for inserts.
Public methodMapToT
If implementd, recursively copies fields from the incoming domain object to the persistent dsestination object. Must be called on incoming data for updates.
Public methodMapToCollectionT
If implementd, recursively copies fields from incoming collection of domain objects to the persistent collection. Must be called on incoming data for updates.
Top
See Also