首页 > 代码库 > 如何使用Entityframework.Extended

如何使用Entityframework.Extended

这个插件真的很实用,我们可以使用以下语法来简化我们的工作,以下仅仅是示例:

Deleting

<strong>//delete all users where FirstName matches
context.Users.Delete(u => u.FirstName == "firstname");
</strong>

Update

//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"});


从上述代码中,我们可以看到,当我们需要删除或编辑符合某一条件的数据时(可能有多条数据),我们可以一次性的进行操作。这里只是简单的演示,更多的信息请查看:

https://github.com/loresoft/EntityFramework.Extended

下面我们来介绍如何安装:

首先,我们需要在Package Manager Console中运行下面命令来将该扩展安装到我们的项目中:

PM> Install-Package EntityFramework.Extended


然后,安装成功后,我们需要在代码页中引用以下命名空间才能使用:

using EntityFramework.Extensions;

Ok, 现在已经可以使用了。





如何使用Entityframework.Extended