I updated to the latest service release from version 1007.The following statement started failing because of "invalid cast":var myresults = from t in mylist select new MyObject(){a="test"};MyGrid.ItemSource = myresults;What needs to change to get this to work again?
Hi,
We're currently looking into fixing this issue. As a workaround you could cast your query to list:
var myresults = (from t in mylist select new MyObject(){a="test"}).ToList();MyGrid.ItemSource = myresults;
Thanks for reporting that!