DataStoreUnpackerExtensions class
.NET Standard 2.x
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
The class contains the IDataUnpacker
extension methods that enable you to use an IDataUnpcker
object to unpack data to an IDataStore
object.
Syntax
public static class DataStoreUnpackerExtensions
Extension Methods
Method | Return Type | Description |
---|---|---|
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key) | IDataStore | Gets an IDataStore object created by the specified element and the DataWindow object specified by the element. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage, [NotNull]string key, [NotNull]string name) | IDataStore | Gets an IDataStore object created by the specified element and the DataWindow object specified by the name parameter. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,[NotNull]DataContext context) | IDataStore | Gets an IDataStore object created by the specified element, the DataWindow object specified by the element, and the DataContext object. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,[NotNull]MappingMethod importMapping) | IDataStore | Gets an IDataStore object created by the specified element and the DataWindow object specified by the element. You can also specify the mapping method for importing data into the IDataStore object. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,[NotNull]string name,[NotNull]MappingMethod importMapping) | IDataStore | Gets an IDataStore object created by the specified element and the DataWindow object specified by the name parameter. You can also specify the mapping method for importing data into the IDataStore object. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,[NotNull]DataContext context,[NotNull]MappingMethod importMapping) | IDataStore | Gets an IDataStore object created by the specified element, the DataWindow object specified by the element, and the DataContext object. You can also specify the mapping method for importing data into the IDataStore object. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,DataContext context,string name) | IDataStore | Gets an IDataStore object created by the specified element, the DataWindow object specified by the name parameter, and the DataContext object. |
GetDataStore([NotNull]this IDataUnpacker dataUnPackage, [NotNull]string key, DataContext context, string name, [NotNull]MappingMethod mappingMethod) | IDataStore | Gets an IDataStore object created by the specified element, the DataWindow object specified by the name parameter, and the DataContext object. You can also specify the mapping method for importing data into the IDataStore object. |
GetDataStore<TModel>([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key) | IDataStore<TModel> | Gets an IDataStore object created by the specified element and the DataWindow object specified by the element. |
GetDataStore<TModel>([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,DataContext context) | IDataStore<TModel> | Gets an IDataStore object created by the specified element, the DataWindow object specified by the element, and the DataContext object. |
GetDataStore<TModel>([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,[NotNull]MappingMethod importMapping) | IDataStore<TModel> | Gets an IDataStore object created by the specified element and the DataWindow object specified by the element. You can also specify the mapping method for importing data into the IDataStore object. |
GetDataStore<TModel>([NotNull]this IDataUnpacker dataUnPackage,[NotNull]string key,DataContext context,[NotNull]MappingMethod importMapping) | IDataStore<TModel> | Gets an IDataStore object created by the specified element, the DataWindow object specified by the element, and the DataContext object. You can also specify the mapping method for importing data into the IDataStore object. |
GetModelEntries<TModel>([NotNull]this IDataUnpacker packer,[NotNull]string key) | IEnumerable<IModelEntry<TModel>> | Gets an IEnumerable object as an element to the IDataUnpacker object. |
GetModelEntries<TModel>([NotNull]this IDataUnpacker packer,[NotNull]string key,[NotNull]MappingMethod importMapping) | IEnumerable<IModelEntry<TModel>> | Gets an IEnumerable object as an element to the IDataUnpacker object. You can also specify the mapping method for export data from the IDataStore object. |