can someone tell me what I'm doing wrong? :-)
I have this simple query:
var sample = from training in _db.Trainings
where training.InstructorID == 10
select new { Something = training.Instructor.UserName };
And I pass this to ViewBag.
ViewBag.Sample = sample;
Then I want to access it in my view like this:
@foreach (var item in ViewBag.Sample) {
@item.Something
}
And I get error message 'object' does not contain a definition for 'Something'. If I put there just @item
, I get result { Something = SomeUserName }
Thanks for help.