so my view starts off like this
@model ApplicationName.Models.A
and takes in the my database elements from A so if i were to use @Html.DisplayFor(model => model.Whatever) it will display that element from the database in my view.
However i have another attribute that i want to also display on this same page/view. But it is in Models.B
So i need to end up with this
@Html.DisplayFor(model => model.WhateverFromB)
all help greatly appreciated