Skip to main content
A newer version of this page is available. .

ComboBoxExtension.BindToLINQ(String, String) Method

Binds the combo box to a queryable source in database server mode.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v19.2.dll

Declaration

public ComboBoxExtension BindToLINQ(
    string contextTypeName,
    string tableName
)

Parameters

Name Type Description
contextTypeName String

A String object representing the DataContext type name.

tableName String

A String object specifying the table name.

Returns

Type Description
ComboBoxExtension

A ComboBoxExtension object representing the combo box extension.

Remarks

Using the BindToLINQ method, you can easily bind the combo box to queryable data sources.

Internally, the BindToLINQ method uses our LinqServerModeDataSource component, which was specifically designed to allow the combo box to efficiently process large amounts of data. The LinqServerModeDataSource component automatically enables database server mode to optimize the execution of all LINQ queries initiated by the combo box. In this mode, the combo box loads records on demand and performs data-aware operations on the data server. This technique significantly improves the combo box’s speed and responsiveness.

Note

The current BindToLINQ overload catches and conceals any exception thrown by an IQueryable provider. To catch these exceptions manually, use the BindToLINQ(string contextTypeName, string tableName, EventHandler<LinqServerModeDataSourceSelectEventArgs> selectingMethod, EventHandler<ServerModeExceptionThrownEventArgs> exceptionThrownMethod) overload method.

Online Demo

Combo Box Binding (Server Mode)

See Also