本文整理匯總了C#中OpenEnvironment.App_Logic.DataAccessLayer.OpenEnvironmentEntities.AddToT_WQX_IMPORT_TEMPLATE方法的典型用法代碼示例。如果您正苦於以下問題:C# OpenEnvironmentEntities.AddToT_WQX_IMPORT_TEMPLATE方法的具體用法?C# OpenEnvironmentEntities.AddToT_WQX_IMPORT_TEMPLATE怎麽用?C# OpenEnvironmentEntities.AddToT_WQX_IMPORT_TEMPLATE使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OpenEnvironment.App_Logic.DataAccessLayer.OpenEnvironmentEntities
的用法示例。
在下文中一共展示了OpenEnvironmentEntities.AddToT_WQX_IMPORT_TEMPLATE方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: InsertOrUpdateWQX_IMPORT_TEMPLATE
// *************************** IMPORT_TEMPLATE ******************************
// *****************************************************************************
public static int InsertOrUpdateWQX_IMPORT_TEMPLATE(global::System.Int32? tEMPLATE_ID, global::System.String oRG_ID, string tYPE_CD, string tEMPLATE_NAME, String cREATE_USER = "system")
{
using (OpenEnvironmentEntities ctx = new OpenEnvironmentEntities())
{
Boolean insInd = false;
try
{
T_WQX_IMPORT_TEMPLATE a = new T_WQX_IMPORT_TEMPLATE();
if (tEMPLATE_ID != null)
a = (from c in ctx.T_WQX_IMPORT_TEMPLATE
where c.TEMPLATE_ID == tEMPLATE_ID
select c).FirstOrDefault();
if (tEMPLATE_ID == null) //insert case
insInd = true;
if (oRG_ID != null) a.ORG_ID = oRG_ID;
if (tYPE_CD != null) a.TYPE_CD = tYPE_CD;
if (tEMPLATE_NAME != null) a.TEMPLATE_NAME = tEMPLATE_NAME;
if (insInd) //insert case
{
a.CREATE_DT = System.DateTime.Now;
a.CREATE_USERID = cREATE_USER;
ctx.AddToT_WQX_IMPORT_TEMPLATE(a);
}
ctx.SaveChanges();
return a.TEMPLATE_ID;
}
catch (Exception ex)
{
return 0;
}
}
}