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...
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...