SqlHelperInsertT Method

取得新增指令

Definition

Namespace: eBizprise.Framework
Assembly: eBizprise.Framework.Database.SqlHelper (in eBizprise.Framework.Database.SqlHelper.dll) Version: 25.0.3.0+6e92afb880fa099fdfe407c9aa8d1b17eaaf3625
C#
public string Insert<T>()

Type Parameters

T
物件類型

Return Value

String
string

Implements

IDatabaseHelperInsertT

Example

C#
using (SqlHelper sqlHelper = new SqlHelper("SqlServer"))
{
    string insertString = sqlHelper.Insert<Employee>();
}

Revision History

DateVersionDescription
2020/02/071.0.0.0初版
2020/03/061.0.2.0增加支援結構描述
2020/09/011.0.18.0增加Log明細
2025/08/081.0.1.0修正含ExtendJson資料查詢會變空值問題
2025/09/1925.0.0.0彙整2025年度初版

See Also