当前位置: 代码迷 >> .NET Framework >> 怎么使用Entityframework.Extended
  详细解决方案

怎么使用Entityframework.Extended

热度:103   发布时间:2016-05-01 23:33:46.0
如何使用Entityframework.Extended

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

Deleting

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

Update

//update all tasks with status of 1 to status of 2context.Tasks.Update(    t => t.StatusId == 1,     t2 => new Task {StatusId = 2});//example of using an IQueryable as the filter for the updatevar 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, 现在已经可以使用了。




  相关解决方案