Привет, у меня такой запрос:
var queryGridData = from question in questions
select new {
i = question.Id,
cell = new List<string>() { question.Id.ToString(), question.Note, question.Topic }
};
Часть ToString()
, необходимая для преобразования int
, вызывает:
LINQ to Entities does not recognize the method 'System.String.ToString()' method, and this method cannot be translated into a store expression.
Hmmmmmmmmmmm. Мне нужно это как string
, чтобы войти в collection
. Есть идеи?