私は次のものを持っています:
var result =
from entry in feed.Descendants(a + "entry")
let content = entry.Element(a + "content")
let properties = content.Element(m + "properties")
let text = properties.Element(d + "Text")
let title = properties.Element(d + "Title")
let partitionKey = properties.Element(d + "PartitionKey")
select new Content
{
Text = text.Value,
Title = title.Value
};
私がやりたいのは、結果にいくつかのアイテムだけが配置されるように場所を追加することです。条件にどのように追加できますか:
partitionKey.Substring(2, 2) == "03" && text != null
選択に?