我要嘗試儘可能簡化這個詞,因爲我的問題相當複雜(或者我認爲!!!)。在C中的變量內部的字符串分裂#
目前我有一個與中繼器相關的變量,它列出了業務中各個員工的一組配置文件。
在變量中,我有一個字段「Job_Title」,它包含他們工作的扇區和工作標題以'/'分隔。我試圖實現的是根據「Job_Title」字符串中的扇區分配一組DIV類。
現在我可以通過以下操作
DT_Control_Profile Pro =
db.DT_Control_Profiles
.SingleOrDefault(x => x.PageControlID == PageControl_ID);
if (Pro != null)
{
String[] cutsector = Pro.Job_Title.Split('/');
foreach (string s in cutsector)
{
if (s.Trim().ToUpper() == "WELL ENGINEERING")
{
DIV_SECOTR.Attributes.Add("class", "sectorcon conwelleng");
}
else if (s.Trim().ToUpper() == "RESEVOIR ENGINEERING")
{
DIV_SECOTR.Attributes.Add("class", "sectorcon conreseng");
}
else if (s.Trim().ToUpper() == "GEO SCIENCES")
{
DIV_SECOTR.Attributes.Add("class", "sectorcon congeoscie");
}
else if (s.Trim().ToUpper() == "FACILITES ENGINEERING")
{
DIV_SECOTR.Attributes.Add("class", "sectorcon confacilieng");
}
};
但是我很努力變戲法實現這一使用變量,從而牽引多個配置文件到頁面上的方式對一個配置文件實現這一目標!
到目前爲止,我有這樣的:
var leaders = from x in db.DT_Control_Profiles
where x.FeatureProfile == true
&& x.DT_PageControl.DT_SitePage.VennID == codesnippets.VennID
select new
{
img = Path + x.ImageUrl,
x.Job_Title,
x.Name,
about = codesnippets.StringSize(x.Biography, 100),
link = "~/" + x.DT_PageControl.DT_SitePage.PageName,
};
我認爲,解決辦法在於foreach循環,但我不知道從哪裏開始!
任何人都可以指出我在正確的方向?