Develop faster

Smart UI Components

React components are designed for direct binding with the Entity Framework to facilitate data display.

Code First Entities
Leverage the Entity Framework with Code First Entities to define and generate your databases and tables programmatically.
Smart UI Components
Simply add a React component to your page, and it will automatically bind with your data model.
Security Model
UI Component interactions are governed by the underlying security model to ensure proper access control.
TodoList.cs
App.jsx
[Table("TodoList")]
public class TodoList : BaseRecord
{
    public Guid TodoListId { get; set; }
    public string Name { get; set; }
    
    [UIDisplayName("Due Date")]
    public DateTime DueDate { get; set; }
}