combit List & Label 30 - .NET Help
combit.Reporting.DataProviders Namespace / ITableRelation Interface
Properties

ITableRelation Interface Members

The following tables list the members exposed by ITableRelation.

Public Properties
 NameDescription
 Property

This property is accessed to query the child key column name. Combined keys can be passed with the separator "\t". Your data provider should therefore deliver for example "CustomerID\tOrderID" and the corresponding child fields. In the ApplyFilter() Method of the ITable Interface the values are arriving exactly like that, a filter string could look like following:

"CustomerID\tOrderID=22\t14"

The GetChildTable() Method of the ITableRow Interface directly gets a ITableRelation Interface, so that you also have access to the combined fields there.

 
 PropertyThis property is accessed to query the child table name.  
 Property

This property is accessed to query the parent key column name. Combined keys can be passed with the separator "\t". Your data provider should therefore deliver for example "CustomerID\tOrderID" and the corresponding child fields. In the ApplyFilter() Method of the ITable Interface the values are arriving exactly like that, a filter string could look like following:

"CustomerID\tOrderID=22\t14"

The GetChildTable() Method of the ITableRow Interface directly gets a ITableRelation Interface, so that you also have access to the combined fields there.

 
 PropertyThis property is accessed to query the parent table name.  
 PropertyThis property is accessed to query the relation name.  
Top
See Also