Examples
Overload List
Name | Description | |
---|---|---|
![]() | Column(String) |
Define a column of data to retrieve
|
![]() | Column(String, String) |
Define a table and column of data to retrieve
|
![]() | Column(String, String, String) |
Define a table and column of data to retrieve and assign an alias for the results
|
Examples

/* 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");