我在我的 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";
.
我能怎么做?
谢谢。