Interface IImportSQLDataAccessLayer
Interface which must be implemented in every dal, which laods data from a database to create an IDataReader
Inherited Members
Namespace: Simplic.Framework.Extension
Assembly: Simplic.Framework.Extension.dll
Syntax
public interface IImportSQLDataAccessLayer : IImportDataAccessLayer
Methods
| Improve this Doc View SourceGetData(InstanceData_Interface_Info, IDictionary<String, Object>, XmlNode)
Returns an instance an IDataReader for loading the data
Declaration
IDataReader GetData(InstanceData_Interface_Info SourceInfo, IDictionary<string, object> Parameter, XmlNode SourceSQL)
Parameters
| Type | Name | Description |
|---|---|---|
| InstanceData_Interface_Info | SourceInfo | Information about the source |
| IDictionary<System.String, System.Object> | Parameter | Parameter for loading the data |
| XmlNode | SourceSQL |
Returns
| Type | Description |
|---|---|
| IDataReader | Instance of an IDataReader |