BootstrapCardViewBuilderBase<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
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()
.BootstrapCardView("cardView")
.KeyFieldName("OrderID", "ProductID")
.Columns(columns => {
columns.Add("From");
})
.Routes(routes => routes
.MapRoute(r => r.Action("Binding").Controller("CardView")))
.Bind(Model)
See Also