Dear
can i add multiple edit model with Different model on same rezor page
ex:
Dear
can i add multiple edit model with Different model on same rezor page
ex:
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Uday DodiyaPosted Jan 9, 2023, 4:06 AM
Yes, it is possible to add multiple edit models on the same Razor page in a Blazor Server application.
To do this, you can define multiple forms on the page, each with its own edit model and associated form elements. You can then bind each form to its own edit model and handle the form submission separately in your code.
For example, let's say you have two models,
Model1andModel2, that you want to edit on the same page. You could define your page like this:This will create two separate forms on the page, each with its own edit model and submit button. You can then handle the form submission separately in your code using the
SubmitModel1andSubmitModel2methods.ahmad abukhalilPosted Jan 10, 2023, 2:20 PM
Thank you Uday Dodiya