TipsyBaboon.Core 1.1.3

dotnet add package TipsyBaboon.Core --version 1.1.3
                    
NuGet\Install-Package TipsyBaboon.Core -Version 1.1.3
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TipsyBaboon.Core" Version="1.1.3" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TipsyBaboon.Core" Version="1.1.3" />
                    
Directory.Packages.props
<PackageReference Include="TipsyBaboon.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add TipsyBaboon.Core --version 1.1.3
                    
#r "nuget: TipsyBaboon.Core, 1.1.3"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package TipsyBaboon.Core@1.1.3
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=TipsyBaboon.Core&version=1.1.3
                    
Install as a Cake Addin
#tool nuget:?package=TipsyBaboon.Core&version=1.1.3
                    
Install as a Cake Tool

TipsyBaboon.Core

Infrastructure contracts and base services for the TipsyBaboon RAD framework.

What is TipsyBaboon?

TipsyBaboon is an infrastructure-first rapid application development framework for ASP.NET Core. Stop rewriting infrastructure and focus on your business domain.

The framework provides:

  • Model Registry - Automatic discovery and registration of models
  • Attribute-Based Configuration - Declarative model metadata via C# attributes
  • Storage Contracts - Provider-agnostic data access interfaces
  • Lifecycle Hooks - BeforeChange, AfterSave, and BeforeGet extensibility points
  • Permission System - Role-based access with ownership levels
  • Change Tracking - Automatic audit trail for all records

Installation

dotnet add package TipsyBaboon.Core
dotnet add package TipsyBaboon.SqlServer
dotnet add package TipsyBaboon.UI

Quick Start

[ModuleName("MyApp")]
[UIEntity("Contact")]
public class Contact : TipsyBaboonModel
{
    [RecordName]
    [Required]
    [UIDisplay(ShowInList = true)]
    public string Name { get; set; }
    
    [UIDisplay(ShowInList = true)]
    public string Email { get; set; }
}

That's it! The framework auto-generates:

  • Database schema
  • CRUD pages (Index, Detail, Create)
  • Generic REST API
  • Permission management
  • Change history

License

MIT License - Copyright © 2026 Tipsy Baboon

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on TipsyBaboon.Core:

Package Downloads
TipsyBaboon.SqlServer

SQL Server data provider for TipsyBaboon. Implements storage, querying, schema synchronization, and change tracking for SQL Server databases. Handles model-to-table mapping, dynamic query building, and transactional operations.

TipsyBaboon.UI

Razor Pages UI components for TipsyBaboon. Auto-generates detail/create/index pages, generic CRUD APIs, Bootstrap-based responsive interfaces, and extensible field renderers. Includes inline editing, modal dialogs, permission UI, and change tracking views.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.3 117 3/11/2026
1.1.2 145 3/9/2026
1.1.1 129 2/16/2026
1.1.0 130 2/16/2026