Creating your first integration
Creating your first integration with Konstrukt, the back office UI builder for Umbraco.
In this guide we'll take you through the steps needed for a basic implementation using Konstrukt to manage a single custom database table.
Set up the database
Out of the box Konstrukt works using PetaPoco as the persistence layer as this is what ships with Umbraco. It is possible to use a custom Repository if you prefer, but for the sake of getting started, we’ll assume you are using this default strategy.
Start by setting up a database table for your model (you might want to populate it with some dummy data as well whilst learning). We’ll use the following as an example:
Set up your model
With the database table setup we then need to create the associated poco model in our project.
Configure Konstrukt
With the database and model setup, we can now start to configure Konstrukt itself. The entry point for a Konstrukt configuration is via the AddKonstrukt
extension method that we call on the IUmbracoBuilder
instance within the ConfigureServices
method of the Startup
class.
For our example, we will use the following configuration.
Access your UI
With your configuration defined and your project compiled, before you can access your UI there is one last step to perform and that is to give your back office user account permission to access the newly defined section. To do this you'll need to login to the back office and head to the users section and update the user group your user belongs to to allow access.
With the permissions set, you can refresh your browser and you should now see your new section available in the site navigation.
Summary
As you can see, with very little code you can start to create very powerful interfaces for your custom data structures.
Last updated