Getting Started
Project Setup
To start using Jenga.NET, First create a .NET Framework (4.7 >) WinForms project.
Organize the project using Folders (Recommended), Create the Models folder. This is where we will add the Jenga Models.
Install dependencies
Right click on the project, click manage nuget packages. (An active internet connection is required).
Search for Jenga.NET then install in.
Add Model Classes
Add a class to the models folder and name it user.
Include the namespaces:
[AutogenerateTables] Attribute
This attribute enables Jenga.NET to autogenerate the table and its fields automatically if it does not exist. The integer parameter is the order of the table generation for related tables.
Parent tables should have lower order than the child tables
[JengaEntity] Attribute
This attribute identifies the class as a Jenga entity model. Classes without this attribute won't be visible on Jenga.NET.
Last updated