Skip to main content

BootstrapGridViewBuilderBase<T>.KeyFieldName(String[]) Method

Sets the names of the data source key fields.

Namespace: DevExpress.AspNetCore.Bootstrap

Assembly: DevExpress.AspNetCore.Bootstrap.v18.2.dll

Declaration

public T KeyFieldName(
    params string[] keyFieldNames
)

Parameters

Name Type Description
keyFieldNames String[]

A string array that specifies the key field names.

Returns

Type Description
T

A reference to this instance after the operation is completed.

Remarks

IMPORTANT

Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.

Some operations (e.g., editing and grouping) require a key field to be specified. Use the KeyFieldName method for this purpose.

@model IEnumerable<Email>

@(Html.DevExpress()
    .BootstrapGridView("grid")
    .KeyFieldName("OrderID", "ProductID")
    .Columns(columns => {
        columns.Add("From");
        ...
    })
    .Routes(routes => routes
        .MapRoute(r => r.Action("Binding").Controller("GridView")))
    .Bind(Model)
See Also