是否可以評估某個點的選擇投影以獲取正在選擇哪些屬性的列表? 舉例來說,如果我有下面的類: public class Example()
{
public string Aaa { get; set; }
public int Bbb { get; set; }
public string Ccc { get; set; }
}
及以下選擇投影: Expre
基於本地表達式變量可以加入兩個from嗎? ex; var query = from t in context.table1
from a in context.anothertable1.Where(x => t.id == a.id)
select new {a,t};
第2行,Where子句.Where(x => t.id == a.id)你會如何將它移動到表