Hi!
LINQ to Entities has many LINQ methods marked as "Unsupported" (http://msdn.microsoft.com/en-us/library/bb738550.aspx).
Is any way to implement some of these methods by hands? Or I should wait next release of EF?
I'm especially needing this method:
IQueryable<TResult> Select<TSource, TResult>(this IQueryable<TSource> source, Expression<Func<TSource, int, TResult>> selector)
Thanks
UPD: For example I want to use select in this way:
var usersWithRowNumbers = allUsers.Select((u, index) => new {UserID = u.UserID, Index = index});