-
I use the SubSonic Select Command to query a table with about 20 rows and bind the result to a combobox. The statement looks something like this (sorry, VB Code): ComboBox1.DataSource = New [Select]() _ .From(TableObject.Schema).OrderAsc(TableObject.NameColumn.PropertyName) _ .ExecuteAsCollection(Of...