我在ASP.NET MVC項目上使用EntityFramework。從我的不同記錄中獲取所有標記
比方說,我有以下實體:
public class Project
{
public int ProjectID { get; set; }
public string Description { get; set; }
public string Tags { get; set; }
}
可以說,我有我的DB以下數據:
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"
我想從我的所有記錄,收集所有的標籤。所以:「一,二,三,四,五,六,七」
我該怎麼辦?這可能似乎是一個愚蠢的問題,但我不知道如何繼續。
謝謝。
命令不重要嗎?例如,「一,三,五,七,二,六,四」會好嗎? –