The model uses inheritance.How to make that when loading the data from the model is automatically substituted?
@(Html.Kendo().DropDownList()
.Name("LoginViewModels.Country.Obl")
.HtmlAttributes(new { style = "width:100%" })
.OptionLabel("Выберите область")
.DataTextField("Key")
.DataValueField("Key")
.DataSource(source =>
{
source.Read(read =>
{
read.Action("LoadObl", "Account");
});
})
)