Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests 1.2.0

dotnet add package Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests --version 1.2.0                
NuGet\Install-Package Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests -Version 1.2.0                
此命令旨在在 Visual Studio 的包管理器控制台中使用,因为它使用 NuGet 模块的版本 Install-Package.
<PackageReference Include="Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests" Version="1.2.0" />                
对于支持 PackageReference 的项目,将此 XML 节点复制到项目文件中以引用程序包。
paket add Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests --version 1.2.0                
#r "nuget: Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests, 1.2.0"                
#r 指令可以在 F# Interactive 和 Polyglot Notebooks 中使用。将其复制到交互式工具或脚本的源代码中以引用程序包。
// Install Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests as a Cake Addin
#addin nuget:?package=Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests&version=1.2.0

// Install Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests as a Cake Tool
#tool nuget:?package=Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests&version=1.2.0                

字典管理

提供字典项和组数据

如何使用

领域

IDictionaryManager 开始

  /// <summary>
  ///  Get items
  /// </summary>
  Task<IReadOnlyList<DictionaryItemDescriptor>> GetItemsAsync(string groupName, bool onlyEnabled = true, CancellationToken cancellationToken = default);
  /// <summary>
  ///  Get groups
  /// </summary>
  Task<IReadOnlyList<DictionaryGroupDescriptor>> GetGroupsAsync(string? parentName = null, bool onlyPublic = true, CancellationToken cancellationToken = default);

  /// <summary>
  ///  Get item value by name
  /// </summary>
  Task<string?> GetItemValueAsync(string itemName, string? defaultValue = null, CancellationToken cancellationToken = default);
  /// <summary>
  ///  set an item value by name
  /// </summary>
  Task SetItemValueAsync(string name, string value, CancellationToken cancellationToken = default);

  /// <summary>
  /// Set item is enabled
  /// </summary>
  Task SetItemEnabledAsync(string name, bool isEnabled, CancellationToken cancellationToken = default);
  /// <summary>
  /// Set group is public
  /// </summary>
  Task SetGroupPublicAsync(string name, bool isPublic, CancellationToken cancellationToken = default);

  /// <summary>
  ///  Get item descriptor by name
  /// </summary>
  Task<DictionaryItemDescriptor> GetItemAsync(string name, CancellationToken cancellationToken = default);
  /// <summary>
  /// Get group descriptor by name
  /// </summary>
  Task<DictionaryGroupDescriptor> GetGroupAsync(string name, CancellationToken cancellationToken = default);

  /// <summary>
  ///  Check group is exists by name
  /// </summary>
  Task<bool> IsGroupExistsAsync(string name, CancellationToken cancellationToken = default);
  /// <summary>
  ///  Check item is exists by name
  /// </summary>
  Task<bool> IsItemExistsAsync(string name, CancellationToken cancellationToken = default);

  /// <summary>
  /// Create item
  /// </summary>
  Task<DictionaryItem> CreateItemAsync(string name, string displayName, string? value = null, string? description = null, string? groupName = null, int displayOrder = 100, bool isEnabled = true, CancellationToken cancellationToken = default);
  /// <summary>
  ///  Create group
  /// </summary>
  Task<DictionaryGroup> CreateGroupAsync(string name, string displayName, string? parentName = null, string? description = null, bool isPublic = false, CancellationToken cancellationToken = default);

  /// <summary>
  ///  Delete item by name
  /// </summary>
  Task DeleteItemAsync(string name, CancellationToken cancellationToken = default);
  /// <summary>
  /// Delete group by name
  /// </summary>
  Task DeleteGroupAsync(string name, bool removeAllItems = true, CancellationToken cancellationToken = default);

应用服务

IDictionaryAppService 开始

产品 兼容和附加的计算机目标框架版本。
.NET net8.0 兼容。 net8.0-android 已计算。 net8.0-browser 已计算。 net8.0-ios 已计算。 net8.0-maccatalyst 已计算。 net8.0-macos 已计算。 net8.0-tvos 已计算。 net8.0-windows 已计算。
兼容的目标框架
包含的目标框架(在包中)
更多关于 目标框架.NET Standard 的信息。

NuGet包 (1)

显示依赖Passingwind.Abp.DictionaryManagement.EntityFrameworkCore.Tests的前1个NuGet包

下载
Passingwind.Abp.DictionaryManagement.Domain.Tests

一个提供动态字典管理服务的abp模块

GitHub仓库

此包没有被任何流行的GitHub仓库使用。

版本 下载 最后更新
1.2.0 70 7/7/2024