我有一组数据要一次插入,比如10行。
我的表格有三列:PlanId
,MomEntryId
和CreatedBy
我可以在一个SQL语句中插入所有10行吗?
这是我的商店程序。如何在SP中传递10行值。我需要验证PlanId
和MomEntryId
,它的值是greater than zero
。
CREATE PROCEDURE SP_Document_Plan_Or_MomEntry_Insert
@PlanId int = null,
@MomEntryId int = null,
@CreatedBy varchar(20)
AS
BEGIN
if(@PlanId > 0)
begin
Insert into t_Document(PlanId,CreatedBy,CreatedDate)
values
(@PlanId,@CreatedBy,GETDATE())
end
else if (@MomEntryId>0)
begin
Insert into t_Document([MomEntryId],CreatedBy,CreatedDate)
values
(@MomEntryId,@CreatedBy,GETDATE())
end
END
GO
下面是我传递参数的C#代码。
cblCheckList.Items.Cast<ListItem>().ToList().ForEach(d =>
{
if(d.Selected)
{
momEntry.AddDocumentDetailForMomEntry(Convert.ToInt32(d.Value), Session["userId"].ToString());
}
});
这是针对Datalayer代码的。我使用Enterprise library
文件来创建DbHelper类。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
/// <summary>
/// Summary description for MOMGateway
/// </summary>
public class MOMGateway
{
private MOMGateway()
{
//
// TODO: Add constructor logic here
//
}
///
/// This method perform insert operation in Document table
///
public static int AddDocumentEntryforMomEntry(int momEntryId,string createdBy)
{
int i = Convert.ToInt32(DBHelper.GetDatabase().ExecuteScalar("SP_Document_Plan_Or_MomEntry_Insert",
null,momEntryId,createdBy));
return i;
}
}
答案 0 :(得分:1)
这是我的商店程序。如何在SP
中传递10行值
为此目的使用User Defined Table Type。您可以将DataTable
或您的对象集合从C#代码作为参数传递给您定义的表类型。