How to update an existing entity in nopCommerce 2.5 (MVC)?
I did makes changes to class under Nop.Data > Mapping folder. But it does not created the column to database after I run the application. Is there anything else I need to do?
How to update an existing entity in nopCommerce 2.5 (MVC)?
I did makes changes to class under Nop.Data > Mapping folder. But it does not created the column to database after I run the application. Is there anything else I need to do?
This is the resource created by the Nop team to guide you through updating the solution/entity
http://www.nopcommerce.com/docs/73/updating-an-existing-entity-how-to-add-a-new-property.aspx
add new property in Nop.Core\Domain folder.
Note: Nop.Data > Mapping is for mapping between your table and your entity classes.
Add new column in your table manually. Manually add column in table is necessary.
Change your Controller and View as per your requirement.
If you want to get to more detail about Add Custom Field In NopCommerce Table