How To Iterate This

  • Thread starter Thread starter IndigoMontoya
  • Start date Start date
I

IndigoMontoya

Guest
I am using EF Core and this is my statement

var studentInfo = ctx.students.Select(x => new {x.studentFirst, x.studentLast, x.studentAge}).ToArray();


now how can I access the values in studentInfo

Continue reading...
 
Back
Top