Benevia.Core.CommonEntities 0.9.17-ci.136

This is a prerelease version of Benevia.Core.CommonEntities.
dotnet add package Benevia.Core.CommonEntities --version 0.9.17-ci.136
                    
NuGet\Install-Package Benevia.Core.CommonEntities -Version 0.9.17-ci.136
                    
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="Benevia.Core.CommonEntities" Version="0.9.17-ci.136" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Benevia.Core.CommonEntities" Version="0.9.17-ci.136" />
                    
Directory.Packages.props
<PackageReference Include="Benevia.Core.CommonEntities" />
                    
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 Benevia.Core.CommonEntities --version 0.9.17-ci.136
                    
#r "nuget: Benevia.Core.CommonEntities, 0.9.17-ci.136"
                    
#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 Benevia.Core.CommonEntities@0.9.17-ci.136
                    
#: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=Benevia.Core.CommonEntities&version=0.9.17-ci.136&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Benevia.Core.CommonEntities&version=0.9.17-ci.136&prerelease
                    
Install as a Cake Tool

Benevia.Core.CommonEntities

Maintainers

Introduction

Benevia.Core.CommonEntities provides reusable model contracts for common entity patterns in Benevia applications. Today it contains the shared tag shape without taking ownership of app-specific relationships, API behavior, or UI.

Modules

Contracts

ITag defines the common tag shape. It includes the tag name and optional description.

Usage

Reference the package from your model project, then implement the contract in your concrete tag entity. Keep the taggable-entity marker in the consuming application so it stays compatible with the local generator pipeline.

using Benevia.Core.CommonEntities;

public partial interface ITagEntity
{
}

[ApiEntity]
public partial class SalesOrder : ITagEntity
{
}

[ApiEntity]
public partial class SalesOrderTag : ITag
{
    [ReferenceProperty("Sales Order", DeleteAction.Cascade)]
    [OppositeSideCollection("Tags", "Tags for this sales order", CollectionLoadMode.LoadAll)]
    public virtual partial SalesOrder? TagEntity { get; set; }
}

The package owns only the reusable contracts. Consuming applications remain responsible for:

  • concrete *Tag entities
  • concrete tagged entities
  • any local marker interface such as ITagEntity
  • concrete parent references such as TagEntity
  • concrete opposite-side collections such as Tags
  • any tag business workflows
  • API query helpers and UI components
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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.9.17-ci.136 0 5/13/2026
0.9.17-ci.135 26 5/13/2026
0.9.17-ci.134 41 5/12/2026
0.9.17-ci.133 43 5/11/2026
0.9.17-ci.132 91 5/11/2026
0.9.17-ci.131 50 5/11/2026
0.9.17-ci.130 59 5/11/2026
0.9.17-ci.129 45 5/10/2026
0.9.17-ci.128 54 5/9/2026
0.9.17-ci.127 42 5/9/2026
0.9.17-ci.126 73 5/8/2026
0.9.17-ci.125 46 5/7/2026
0.9.17-ci.124 121 5/7/2026
0.9.17-ci.123 52 5/6/2026
0.9.17-ci.122 49 5/6/2026
0.9.17-ci.121 48 5/6/2026
0.9.17-ci.120 53 5/5/2026
0.9.17-ci.118 41 5/5/2026
0.9.17-ci.117 48 5/5/2026
0.9.17-ci.116 46 5/5/2026
Loading failed