I am creating an MVC CRUD using repository pattern.
I have 3 tables, each of them need to be inserted to at the same time at POST.
My question is, do I need to have a ViewModel with all the fields in it from each table?
And then just call the right methods to add them all to each table?
Thanks