テーブルに単一のレコードを挿入するときに正常に機能する after Insert トリガーがあります。
ALTER TRIGGER [dbo].[Insert_Into_Questions_Table]
ON [dbo].[Questionmaster]
After Insert
AS
BEGIN
Insert into Questions(Question_questionid,Question_questionname,Question_answer1,Question_answer2,Question_answer3,Question_answer4,Exam_examtypeid,User_Userid)
select Question_questionid,Question_questionname,Question_answer1,Question_answer2,Question_answer3,Question_answer4,Exam_examtypeid,User_Userid from Inserted
SET NOCOUNT ON;
-- Insert statements for trigger here
END
問題:
C# コードから BulkCopy を使用して複数のレコードを挿入しようとすると、トリガーが機能しません。