AspCoreGen 6.0 MVC

  1. Generates business layer code.

    Caratteristiche: With the middle-tier generated, all you have to do for most part is to write one line of code to do a CRUD operation such as delete a record, get the total number of records, get a certain amount of records and more. To make it even easier, code examples ...

  2. Generate data repository code

    Caratteristiche: The data tier takes care of all the plumbing code that accesses the database so you don’t have to. Whether you choose to access your database using entity framework, stored procedures, or ad-hoc SQL (SQL in code), code is already generated for you. Access ...

  3. Generates optional Web API project.

    Caratteristiche: Every operation available to the business layer can be accessed through a web API endpoint. These web API methods encapsulates calls to the business layer methods. Generated Web API methods can be accessed publicly and can act as a service to other ...

  4. Generates the presentation layer web project.

    Caratteristiche: Generated MVC views are bound to an MS SQL Server database. Up to 18 different views per database table are generated performing CRUD operations. Operations such as sorting, paging, searching, creating and updating records, deleting by primary key, ...