如何使用Entityframework.Extended
1个回答
展开全部
这个插件真的很实用,我们可以使用以下语法来简化我们的工作,以下仅仅是示例:
Deleting
[csharp] view plain copy print?
<strong>//delete all users where FirstName matches
context.Users.Delete(u => u.FirstName == "firstname");
</strong>
Update
[csharp] view plain copy print?
//update all tasks with status of 1 to status of 2
context.Tasks.Update(
t => t.StatusId == 1,
t2 => new Task {StatusId = 2});
//example of using an IQueryable as the filter for the update
var users = context.Users.Where(u => u.FirstName == "firstname");
context.Users.Update(users, u => new User {FirstName = "newfirstname"});
从上述代码中,我们可以看到,当我们需要删除或编辑符合某一条件的数据时(可能有多条数据),我们可以一次性的进行操作
Deleting
[csharp] view plain copy print?
<strong>//delete all users where FirstName matches
context.Users.Delete(u => u.FirstName == "firstname");
</strong>
Update
[csharp] view plain copy print?
//update all tasks with status of 1 to status of 2
context.Tasks.Update(
t => t.StatusId == 1,
t2 => new Task {StatusId = 2});
//example of using an IQueryable as the filter for the update
var users = context.Users.Where(u => u.FirstName == "firstname");
context.Users.Update(users, u => new User {FirstName = "newfirstname"});
从上述代码中,我们可以看到,当我们需要删除或编辑符合某一条件的数据时(可能有多条数据),我们可以一次性的进行操作
名片
2024-10-28 广告
2024-10-28 广告
Altair HyperWorks是一套功能强大的集成化CAE(计算机辅助工程)软件平台,由Altair公司开发。它涵盖了结构分析、流体动力学、优化、多体动力学、电磁场仿真等多个领域,提供了丰富的仿真工具和优化算法。HyperWorks以其...
点击进入详情页
本回答由名片提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询