MapperKernelView Property |
The name of the mapper's underlying view or table.
This is normally loaded from meta-data during IMapper.Load().
Note that the View is used in the mapper's operational query and count
SELECT statements, but is not used for INSERT, UPDATE, or DELETE operations.
All INSERT, UPDATE, and DELETE operations are performed against the fields'
underlying tables based on each field's
Table property.
Although the View is required, you can configure the mapper to used a
Stored Procedure instead of the view by specifying the QuerySQL property.
If the QuerySQL property is specified, the View will be ignored (but the Studio
will still require it.
Note that View can be overridden on a page-by-page basis using a page's PageView property.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public string View { get; set; }
Public Property View As String
Get
Set
Property Value
Type:
StringImplements
IMapperViewSee Also