Benevia.Core.CommonEntities 0.9.17-ci.134

This is a prerelease version of Benevia.Core.CommonEntities.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Benevia.Core.CommonEntities --version 0.9.17-ci.134
                    
NuGet\Install-Package Benevia.Core.CommonEntities -Version 0.9.17-ci.134
                    
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.134" />
                    
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.134" />
                    
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.134
                    
#r "nuget: Benevia.Core.CommonEntities, 0.9.17-ci.134"
                    
#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.134
                    
#: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.134&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Benevia.Core.CommonEntities&version=0.9.17-ci.134&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.159 38 5/29/2026
0.9.17-ci.158 77 5/28/2026
0.9.17-ci.157 52 5/25/2026
0.9.17-ci.156 47 5/25/2026
0.9.17-ci.155 81 5/25/2026
0.9.17-ci.154 57 5/22/2026
0.9.17-ci.153 46 5/21/2026
0.9.17-ci.152 52 5/21/2026
0.9.17-ci.151 45 5/21/2026
0.9.17-ci.150 54 5/20/2026
0.9.17-ci.149 48 5/20/2026
0.9.17-ci.148 114 5/19/2026
0.9.17-ci.147 47 5/19/2026
0.9.17-ci.146 49 5/19/2026
0.9.17-ci.145 52 5/19/2026
0.9.17-ci.144 62 5/19/2026
0.9.17-ci.143 49 5/18/2026
0.9.17-ci.142 139 5/18/2026
0.9.17-ci.141 44 5/18/2026
0.9.17-ci.134 59 5/12/2026
Loading failed