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);