EnumDatabaseHelperGetText Method

由資料庫取得對應說明

Definition

Namespace: eBizprise.Framework
Assembly: eBizprise.Framework.Enum.EnumDatabaseHelper (in eBizprise.Framework.Enum.EnumDatabaseHelper.dll) Version: 25.0.1.0+adf38c4ccb2bf98d8ad258a6278302b5e05a94ed
C#
public static string GetText(
	this Enum enumItem,
	IDatabaseHelper databaseHelper
)

Parameters

enumItem  Enum
列舉項目
databaseHelper  IDatabaseHelper
資料庫助手

Return Value

String
string

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Enum. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Example

C#
using IDatabaseHelper databaseHelper = new SqlHelper("SqlServer");
string department = GroupType.Department.GetText(databaseHelper);

Revision History

DateVersionDescription
2025/08/011.0.0.0初版
2025/09/1925.0.0.0彙整2025年度初版

See Also