0

我在我的 ASP.NET MVC 项目中使用 EntityFramework。

假设我有以下实体:

public class Project 
{ 
    public int ProjectID { get; set; } 
    public string Description { get; set; } 
    public string Tags { get; set; } 
} 

假设我的数据库中有以下数据:

ProjectID: 1 
Description: "My first element" 
Tags: "one, three, five, seven" 

ProjectID: 2 
Description: "My second element" 
Tags: "one, two, three, six" 

ProjectID: 3 
Description: "My third element" 
Tags: "two, three, four" 

我想返回包含特定数量标签的所有项目。因此,例如,我想获得所有带有标签“一”和“三”的项目。要搜索的标签列表是动态的,并存储在如下变量中:searchFor = "one, three";.

我能怎么做?

谢谢。

4

1 回答 1

1

在控制器中创建您的 ObjectContext 实体对象并调用其方法“Where”示例: db.Projects.Where(p => p.Tags.indexOf("one") > -1 && p.Tags.indexOf(three) > -1);

并将其作为列表发送到视图。例子:

List projects = db.Projects.Where(p => p.Tags.IndexOf("one") > -1 && p.Tags.IndexOf(three) > -1).ToList();
return View(projects);
于 2012-09-01T15:39:45.023 回答