Bee.Repository.Abstractions
4.0.2
dotnet add package Bee.Repository.Abstractions --version 4.0.2
NuGet\Install-Package Bee.Repository.Abstractions -Version 4.0.2
<PackageReference Include="Bee.Repository.Abstractions" Version="4.0.2" />
<PackageVersion Include="Bee.Repository.Abstractions" Version="4.0.2" />
<PackageReference Include="Bee.Repository.Abstractions" />
paket add Bee.Repository.Abstractions --version 4.0.2
#r "nuget: Bee.Repository.Abstractions, 4.0.2"
#:package Bee.Repository.Abstractions@4.0.2
#addin nuget:?package=Bee.Repository.Abstractions&version=4.0.2
#tool nuget:?package=Bee.Repository.Abstractions&version=4.0.2
Bee.NET Framework
Bee.NET Framework is an N-Tier + Clean Architecture + MVVM hybrid designed to accelerate the development of enterprise information systems. It adopts a Definition-Driven Architecture, using FormSchema as the single source of truth to drive UI layout, database schema, and business validation in a unified way.
📌 N-tier means the architecture is divided into more than three logical layers. In Bee.NET, the system is separated into at least five layers: presentation, API communication, business logic, data access, and database — each with a clearly defined responsibility.
All packages target net10.0.
✨ Features
- Definition-Driven Architecture:
FormSchemaserves as the single source of truth, automatically deriving UI layout (FormLayout), database schema (TableSchema), and validation rules — define once, sync everywhere. - N-Tier + Clean Architecture + MVVM: Clear separation of presentation, API, business logic (BO), and data access layers, borrowing the best concepts from each pattern for ERP scenarios.
- Cross-platform compatibility: All packages target
net10.0for modern .NET runtime support. - Modular components: Decoupled libraries for core utilities, data, caching, business logic, and API hosting.
- Rapid development: Reusable base classes and FormSchema-driven CRUD reduce repetitive boilerplate.
📐 Architecture
For an in-depth look at the layered architecture, data flow, and design decisions behind Bee.NET, see the Architecture Overview.
For guidelines on API Contract and BO Parameter design (Request/Response vs Args/Result), see the API/BO Contract Design Principles.
📦 Assembly
Shared (Frontend / Backend)
| Assembly Name | Description |
|---|---|
| Bee.Base.dll | Core utilities such as serialization, encryption, and general-purpose helpers. |
| Bee.Definition.dll | Defines system-wide structured types including FormSchema, field schemas, and layout configurations. |
| Bee.Api.Contracts.dll | Shared data contracts (request/response models) used by both frontend and backend. |
| Bee.Api.Core.dll | Encapsulates API support such as model definitions, payload encryption, and serialization pipeline. |
Backend
| Assembly Name | Description |
|---|---|
| Bee.Repository.Abstractions.dll | Interface contracts for the business layer to access the data layer; boundary between Business Object and Repository. |
| Bee.ObjectCaching.dll | Runtime caching of FormSchema definitions and derived system data to improve performance. |
| Bee.Db.dll | Database abstraction with dynamic SQL command generation and connection binding. |
| Bee.Repository.dll | Common repository base classes and FormSchema-driven data access mechanisms. |
| Bee.Business.dll | Core business logic (Business Object / BO) implementing use-case workflows. |
| Bee.Api.AspNetCore.dll | JSON-RPC 2.0 API controller for ASP.NET Core; unified endpoint for backend method dispatch. |
Frontend
| Assembly Name | Description |
|---|---|
| Bee.Api.Client.dll | Connector for local or remote invocation of backend Business Objects. |
💡 Sample Project
Refer to bee-jsonrpc-sample, which includes examples of JSON-RPC server and client implementations, and demonstrates how to use the Connector for both local and remote connections.
📬 Contact & Follow
You're welcome to follow my technical notes and hands-on experience sharing
| Product | Versions 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. |
-
net10.0
- Bee.Definition (>= 4.0.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Bee.Repository.Abstractions:
| Package | Downloads |
|---|---|
|
Bee.Business
Implements core business logic and application-level workflows. |
|
|
Bee.Repository
Provides common repository base classes and data access mechanisms. |
GitHub repositories
This package is not used by any popular GitHub repositories.