Ok I have a View thats is strongly typed as a collection of MyObject
@model IEnumerable<ViewModels.MyObject>
I loop through the collection to create a list of the objects.
On the same page I need to create form to add a new MyObject.
Is there a way to use Html helpers along wih lambda expressions to create elements strongly typed from my model?
or would it be best to load the Form portion of this page as another partial view typed as MyObject(not a collection)?