Base solution for your next web application
Open Closed

Run time Migration add & Form builder Integration. #11911


User avatar
0
[email protected] created

We are using Asp.net Zero V 13.0.0 with.NET Core and Angular.

After publishing the application on IIS, we want to add new tables (entities) or fields at runtime, similar to a dynamic form builder.

For example, we want integration from Builder. After a publish application exists, add a new field or add a new entity with a curd operation.

Note: After publishing the application to the IIS server, administrators need to add a new field or table to the existing SQL database run time, add migration, and create a dB context file to add that entity.

Is it possible that after publishing an application on IIS, the user can add a field or table, an existing or new entity, to run a time migration?


6 Answer(s)
  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    You can take a look at https://docs.aspnetzero.com/en/aspnet-core-angular/latest/Feature-Dynamic-Entity-Parameters-Angular. This is not exactly the same as you want but it convers the basic functionality.

  • User Avatar
    0
    [email protected] created

    How Can a New Entity Be Added Below the Image Drop Down? For instance, I own a company entity.

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    You must define those entities in development time. Just go to AppDynamicEntityPropertyDefinitionProvider and add entities you want here.

  • User Avatar
    0
    [email protected] created

    Hi @ismcagdas, Thanks for the support. However, I have a query. Is integration with third-party form builders possible?

  • User Avatar
    0
    [email protected] created

    Hi @ismcagdas, How to add input type Dropdown extra Property Like Date ,Radio Box etc.

  • User Avatar
    0
    ismcagdas created
    Support Team

    Hi,

    This is not supported out of the box. You need to modify many places to achieve this. You can create a feature request here https://github.com/aspnetzero/aspnet-zero-core, so our team can add these field types for the next version.