Gets or sets fetch order of the table view.

Namespace:  C1.Data.SchemaObjects
Assembly:  C1.Data.2 (in C1.Data.2.dll)

Syntax

C#
[DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)]
public int FetchIndex { get; set; }
Visual Basic (Declaration)
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)> _
Public Property FetchIndex As Integer
	Get
	Set

Remarks

This property allows you to change the order in which table views in the dataset are fetched. Controlling fetch order can be necessary, for example, if you have both bound and unbound or SQL-based tables in one dataset.

You can set TableView.FetchIndex at design time in the Schema Designer or programmatically at run time, in the CreateSchema()()()() event.

Possible values: from 0 up to the number of table views in the dataset.

See Also