How to I write ModelBinder that access all fields by prefix?

206 Views Asked by At

For example, I like my ModelBinder to transform all "field_???" values to my single custom object. How I could do that? ValueProvider.GetValue only allows me to access by exact name, and I can't enumerate all possible fields...

1

There are 1 best solutions below

2
On

Try this:

public IActionResult OnPost([Bind(Prefix = "field_")] Whatever model)

Read the article https://learn.microsoft.com/ru-ru/aspnet/core/mvc/models/model-binding?view=aspnetcore-5.0