Eaf.DynamicEntityProperties 9.4.6

Prefix Reserved
dotnet add package Eaf.DynamicEntityProperties --version 9.4.6
                    
NuGet\Install-Package Eaf.DynamicEntityProperties -Version 9.4.6
                    
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="Eaf.DynamicEntityProperties" Version="9.4.6" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Eaf.DynamicEntityProperties" Version="9.4.6" />
                    
Directory.Packages.props
<PackageReference Include="Eaf.DynamicEntityProperties" />
                    
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 Eaf.DynamicEntityProperties --version 9.4.6
                    
#r "nuget: Eaf.DynamicEntityProperties, 9.4.6"
                    
#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 Eaf.DynamicEntityProperties@9.4.6
                    
#: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=Eaf.DynamicEntityProperties&version=9.4.6
                    
Install as a Cake Addin
#tool nuget:?package=Eaf.DynamicEntityProperties&version=9.4.6
                    
Install as a Cake Tool

Eaf.DynamicEntityProperties

Dynamic Entity Properties integration for the Enterprise Application Foundation (EAF).

Description

This module exposes ABP's Dynamic Entity Properties subsystem as EAF application services and Angular-friendly REST endpoints, allowing administrators to define custom properties on entities at runtime without changing the domain model.

Dependencies

  • Abp (10.5.0)
  • Abp.AutoMapper (10.5.0)

Components

  • EafDynamicEntityPropertiesModule
  • DynamicPropertyAppService
  • DynamicEntityPropertyAppService
  • DynamicEntityPropertyValueAppService
  • DTOs and AutoMapper profile under Application/Dto
  • Authorization provider and permission constants under Authorization

Usage

  1. Add a project reference to Eaf.DynamicEntityProperties.
  2. Add typeof(EafDynamicEntityPropertiesModule) to your module's DependsOn list.
  3. Ensure your DbContext inherits from AbpZeroDbContext so the dynamic property tables already exist.
  4. Register allowed input types and entities through DynamicEntityPropertyDefinitionProvider.
[DependsOn(typeof(EafDynamicEntityPropertiesModule))]
public class MyProjectModule : AbpModule
{
    // ...
}
public class MyDynamicEntityPropertyDefinitionProvider : DynamicEntityPropertyDefinitionProvider
{
    public override void SetDynamicEntityProperties(IDynamicEntityPropertyDefinitionContext context)
    {
        context.Manager.AddAllowedInputType<SingleLineStringInputType>();
        context.Manager.AddAllowedInputType<ComboboxInputType>();
        context.Manager.AddAllowedInputType<CheckboxInputType>();
        context.Manager.AddAllowedInputType<MultiSelectComboboxInputType>();
        context.Manager.AddAllowedEntity<User>();
    }
}

License

This project is licensed under the GPL-3.0-or-later License.

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 (1)

Showing the top 1 NuGet packages that depend on Eaf.DynamicEntityProperties:

Package Downloads
Eaf.Middleware.Web.Core

Enterprise Application Foundation - Module Middleware - WebCore Classes

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.4.6 116 8/18/2026