Smart UI Components
React components are designed for direct binding with the Entity Framework to facilitate data display.
[Table("TodoList")]
public class TodoList : BaseRecord
{
public Guid TodoListId { get; set; }
public string Name { get; set; }
[UIDisplayName("Due Date")]
public DateTime DueDate { get; set; }
}