Examples

Overload List

  NameDescription
Public methodColumn(String)
Define a column of data to retrieve
Public methodColumn(String, String)
Define a table and column of data to retrieve
Public methodColumn(String, String, String)
Define a table and column of data to retrieve and assign an alias for the results

Examples

CopyC#
/* Search table 'tblPerson ' */
WIDB.Search.Table("tblPerson");

/* Request data from column 'FirstName' */
WIDB.Search.Column("FirstName");

/* Request data from column 'Work' in table 'tblPhone' */
WIDB.Search.Column("tblPhone", "Work");

/* Request data from column 'Fax' in table 'tblPhone' and use alias 'FaxNumber' */
WIDB.Search.Column("tblPhone", "Fax", "FaxNumber");

See Also