Files
HopFrame/docs/api/installation.md
2024-11-22 10:49:48 +01:00

555 B

Ho to use the Web API version

This Installation adds all HopFrame endpoints and services to the application.

  1. Add the HopFrame.Api library to your project:

    dotnet add package HopFrame.Api
    
  2. Create a DbContext that inherits the HopDbContext and add a data source

  3. Add the HopFrame services to your application, provide the previously created DatabaseContext that inherits from HopDbContextBase

    builder.Services.AddHopFrame<DatabaseContext>();