hello
i have function with IEnumerable
public static IEnumerable<IncomingCalls> Q_IncomingCalls() {
return (from x in Domain.Instance.IncomingCalls
select new { x.CallDate,}).ToList();
}
my error is
Error 2 Cannot implicitly convert type 'System.Collections.Generic.List<AnonymousType#1>' to 'System.Collections.Generic.IEnumerable<Data.IncomingCalls>'. An explicit conversion exists (are you missing a cast?)
Go to the complete details ...