how to bind this column to TextArea in asp.net core project in edit template
this my steps but it's not working
column.Bound(c => c.Note).EditorViewData("TextArea");
[UIHint("TextArea")]
public string Note
{
get;
set;
}
Views/Shared/EditorTemplates/TextArea.cshtml
@model string
@Html.TextAreaFor(m=>m, new { rows = 5})