RAST Framework - Complete Enterprise Blazor Framework. This metapackage includes all RAST components for rapid application development.
$ dotnet add package Rast.FrameworkEnterprise Blazor Framework - Everything You Need
This is the complete RAST Framework metapackage. Install once, get everything.
dotnet add package Rast.Framework --version 1.0.0
That's it! All RAST components installed automatically.
When you install Rast.Framework, you automatically get:
// 1. Install package
dotnet add package Rast.Framework
// 2. Create a form
[Route("/customer")]
public partial class CustomerForm : RastMaintenanceForm<CUSTOMER, ExtendedCustomer>
{
public CustomerForm() : base(PageStruct.Customer) { }
public override Task OnFormLoad()
{
var section = _formContent.AddSection(6);
section.Row.TextBoxCtrl(row => row.Name, T["Name"]);
return Task.CompletedTask;
}
}
// Done! Complete CRUD module ready.
© 2025 Betech Innovation Technology