I'm new in MVC. I saw the most of article about dynamic form is just for client side interface like add form group dynamically not the new object. If it is possible, how about the Model? Can we make model has dynamic property based field on the database that has created/added dynamically and generate the View form layout from the controller for CRUD Operation?
namespace Web1.Models
{
public class Class1
{
public string field1 { get; set; }
public int field2 { get; set; }
// Create dynamic property based database field that has been added
}
}
Thanks in Advance