在一个项目中,我有一个包含以下列的数据库表
我希望能够从此表中删除所有可以传入匹配的SharingAgencyId和ReceivingAgencyId值的行。
到目前为止我尝试过:
public static ICollection<SecurityDataShare> UpdateSharedEntites(long conAgency, long recAgency)
{
ICollection<SecurityDataShare> agShares = null;
try
{
using (var context = new ProjSecurityEntities(string.Empty))
{
agShares = (from a in context.SecurityDataShares
.Where(c => c.ReceivingAgencyId == recAgency && c.SharingAgencyId == conAgency)
select a);
}
}
catch (Exception ex)
{
//ToDo
throw;
}
}
我的思维过程是检索id与传入的参数匹配的记录,然后使用foreach循环遍历(agShare)并删除每一行,然后保存我的更改。使用当前的实现,我似乎无法访问任何Delete方法。
查看上面的示例,我很感激有关如何使用dbContext删除表中包含值43和39的行的任何建议。
干杯
答案 0 :(得分:5)
如果我理解正确,DbContext
的属性(例如SecurityDataShares
)应输入为IDbSet<SecurityDataShare>
。如果这是正确的,您应该可以使用this Remove
method。
foreach(var agShare in agShares) {
context.SecurityDataShares.Remove(agShare);
}
context.SaveChanges();
请注意,这会创建一个单独的SQL语句来删除这些对象。如果您希望对象的数量相当大,则可能需要使用存储过程。
答案 1 :(得分:2)
实体框架不容易运行单个命令来删除多行(我知道)。我的偏好是直接为多实体更新/删除using native sql with the dbcontext of sorts运行SQL语句。
答案 2 :(得分:0)
您还可以将数据表传递给存储过程,数据库包含您的类型的动态类型表 将该表用于存储过程以从Database表中删除匹配的行。