Back to Devexpress

VerticalGridExtension.BindToEF(Type, String) Method

aspnetmvc-devexpress-dot-web-dot-mvc-dot-verticalgridextension-dot-bindtoef-x28-system-dot-type-system-dot-string-x29.md

latest3.5 KB
Original Source

VerticalGridExtension.BindToEF(Type, String) Method

Binds the VerticalGrid to a data source via the Entity Framework in database server mode.

Namespace : DevExpress.Web.Mvc

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

NuGet Package : DevExpress.Web.Mvc5

Declaration

csharp
public VerticalGridExtension BindToEF(
    Type contextType,
    string tableName
)
vb
Public Function BindToEF(
    contextType As Type,
    tableName As String
) As VerticalGridExtension

Parameters

NameTypeDescription
contextTypeType

A Type specifying the DataContext type.

| | tableName | String |

A string specifying the table name.

|

Returns

TypeDescription
VerticalGridExtension

A VerticalGridExtension object representing the VerticalGrid extension.

|

Remarks

Using the BindToEF method, you can easily bind the VerticalGrid to Entity Framework data models. Simply call the method, pass the DataContext and table name as method parameters, and specify the key field via the VerticalGrid’s GridSettingsBase.KeyFieldName property.

Internally, the BindToEF method uses our EntityServerModeDataSource component, which was specifically designed to allow the VerticalGrid to efficiently process large amounts of data. The EntityServerModeDataSource component automatically enables database server mode to optimize the execution of all queries to the data context initiated by the VerticalGrid. In this mode, the VerticalGrid loads records on demand and performs data-aware operations (sorting, filtering, grouping, etc.) on the data server. This technique significantly improves the VerticalGrid’s speed and responsiveness.

Note

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

See Also

Bind Vertical Grid to Large Data (Database Server Mode)

BindToLINQ

Vertical Grid

VerticalGridExtension Class

VerticalGridExtension Members

DevExpress.Web.Mvc Namespace