2
我正在嘗試使用Linq將數據庫查詢中的每一行投影到具有自定義類型作爲其值的字典中。我不確定LINQ語法來做到這一點?如何使用Linq to SQL將項目投影到具有自定義類型的字典?
這是我目前的嘗試(不編譯,但應該證明我正在嘗試做什麼)。我在'選擇新的...'部分遇到問題。
public class MyClass
{
public Dictionary<int, CustomType> dict;
}
public class MyType{
string Name;
decimal Value;
}
var result = (from t in table
select new {
t.Id,
new MyType(t.Name,t.Value)
}).AsEnumerable().ToDictionary();
答:
感謝傑森。我只是使用屬性和自動初始化而不是構造函數。工作代碼類似於此(此的任何調整都歡迎):
public class MyType {
public string Name {get;set;}
public decimal Value { get; set;}
}
Dictionary<int, CustomType> dict;
dict = (from t in table
select new {
id = av.Account.Id,
mt = new MyType { Name = t.Name, Value = t.Value }
}).ToDictionary(item => item.id, item => item.mt);