Saves the remote object through it's underlying mapper. If the mapper has a valid RowKey (generally a primary key)
then it is filtered for that row and saved. If there is no RowKey or the RowKey filter returns no records, then an
error is returned and nothing is saved.
Namespace:
NetQuarry.Net
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax protected static void Save<T>(
IAppContext appCxt,
T data
)
where T : new(), RemoteMapper
Protected Shared Sub Save(Of T As {New, RemoteMapper}) (
appCxt As IAppContext,
data As T
)
Parameters
- appCxt
- Type: NetQuarryIAppContext
The application context. - data
- Type: T
The instace of the RemoteMapper object that needs to be saved.
Type Parameters
- T
- The type of the derived RemoteMapper object
See Also