从ASP.Net Core 2.x中的RazorPages手动利用模型绑定器

时间:2018-09-28 10:39:02

标签: c# asp.net-core .net-core asp.net-core-2.0 model-binding

Asp.Net Core RazorPages具有此功能,它将使用BindProperty属性自动将URL查询和表单数据映射到PageModel对象。

public class MyModel : PageModel
{
    [BindProperty]
    public Customer Customer { get; set; }

    [BindProperty]
    public string SomeData { get; set; }
}

有人知道不使用PageModels是否可以利用此功能?

类似:

someModelBinder.BindContextToModel(myStronglyTypedModelOfQueriesAndFormData, httpContext);

0 个答案:

没有答案