Yes you can, but you need to configure the input names with the names of the ViewModel properties:
<input type="text" name="product.Name" id="product.Name"/> <input type="text" name="product.Description" id="product.Description"/>
Must be:
<input type="text" name="Name" id="name"/> <input type="text" name="Description" id="description"/>
You should not add the ViewModel type as a prefix for input names.
source share