-1
以下Source綁定到Grid的Items Source屬性,但不知道爲什麼這種轉換不可行;我收到以下錯誤:「無法將List類型的對象轉換爲IList。」什麼是錯誤的,在這種情況下會有什麼工作?是否有可能將列表投射到不同類型的IList?
public IList<TypeTwo> Source { get; set; }
public SomeViewModel()
{
List<TypeOne> result = db.GetInfo().ToList();
Source = (IList<TypeTwo>)result;
// This works if the IList is of Type TypeOne
// Source = db.GetInfo().ToList();
}
public class TypeTwo {
// The same properties of TypeOne
}
這還幫我打掃TypeTwo類以及只需選擇需要的屬性。謝謝! – usefulBee