MasterDetailInfo Constructors
Identifies the master-detail relationship defined by associated SQL queries.| Name | Parameters | Description |
|---|---|---|
| MasterDetailInfo() | none | Initializes a new instance of the MasterDetailInfo class with the default settings. |
| MasterDetailInfo(String, String, RelationColumnInfo) | masterQueryName, detailQueryName, keyColumn | Initializes a new instance of the MasterDetailInfo class with the specified settings. |
| MasterDetailInfo(String, String, IEnumerable<RelationColumnInfo>) | masterQueryName, detailQueryName, keyColumns | Initializes a new instance of the MasterDetailInfo class with the specified settings. |
| MasterDetailInfo(String, String, String, String) | masterQueryName, detailQueryName, masterKeyColumn, detailKeyColumn | Initializes a new instance of the MasterDetailInfo class with the specified settings. |
| MasterDetailInfo(String, String) | master, detail | Initializes a new instance of the MasterDetailInfo class with the specified settings. |
See Also