InsertAllonSubmit
in的方法是什么LinqToEntities
。我正在使用一张表中的 where 条件得到结果。现在我需要一次将所有记录插入到另一个表中,而不使用for-loop
Linq To Entities。这可能像:Insert into (Select *)
在SQL中吗?
现在我需要循环它和Add()
.
Int64 groupid = Convert.ToInt64(EmailGroupId);
var data = (from xx in VDC.SURVEY_EMAIL_LIST
where xx.EMAIL_GROUP_ID == groupid
select xx).ToList();
data.ForEach(t2e => VDC.SURVEY_EMAIL_BLAST.Add(new SURVEY_EMAIL_BLAST
{
EMAILID = t2e.EMAILID
}));