Resolved Which is a good way To Pass Two List of objects To the Partial View

Prefer the strongly typed view model that you create. You get the compiler to help you if you miss spelled a property name was compile time, as opposed to finding out at run time. The performance is also faster to access a property on a custom view model object as opposed to the dynamic object.
 
Back
Top Bottom