CardViewExtension.BindToLINQ(String, String, EventHandler<LinqServerModeDataSourceSelectEventArgs>) Method
Binds the CardView to a queryable source in database server mode.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v24.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public CardViewExtension BindToLINQ(
string contextTypeName,
string tableName,
EventHandler<LinqServerModeDataSourceSelectEventArgs> selectingMethod
)
Parameters
Name | Type | Description |
---|---|---|
contextTypeName | String | A string representing the DataContext type name. |
tableName | String | A string specifying the table name. |
selectingMethod | EventHandler<LinqServerModeDataSourceSelectEventArgs> | A method to which selection logic is delegated. |
Returns
Type | Description |
---|---|
CardViewExtension | A CardViewExtension object representing the CardView extension. |
Remarks
Using the BindToLINQ method, you can easily bind the CardView to queryable data sources. Simply call the method, pass the DataContext and table name as method parameters, and specify the key field via the CardView’s GridSettingsBase.KeyFieldName property.
Internally, the BindToLINQ method uses our LinqServerModeDataSource component, which was specifically designed to allow the CardView 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 CardView. In this mode, the CardView loads records on demand and performs data-aware operations (sorting, filtering, etc.) on the data server. This technique significantly improves the CardView’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.