из view можно получить доступ к значению поля таким образом:
@foreach (var item in ViewBag.Articles){
<div class="item" @ViewHelper.Edit(item)>
<h6 class="title"><a href='@Url.FrontUrl().PageUrl("Articles/Detail", new { UserKey = item.UserKey})'@ViewHelper.Edit(item,"Title") >@item.Title</a></h6>
<span class="date">@ViewHelper.DateTimeToString(item.UtcCreationDate,"yyyy-MM-dd")</span>
<p @ViewHelper.Edit(item,"Summary")>@Html.Raw(item.Summary)</p>
<a class="comment" href="@Url.FrontUrl().PageUrl("Articles/Detail", new { UserKey = item.UserKey})#comments">@(((Kooboo.CMS.Content.Models.TextContent)item).Children("Comment").Count()) Comments</a>
</div>
}
тут
item.UserKey собственно пишем нужное поле типа item.Description и получаем результат.
ViewBag.Articles это ссылка на datarule , который создается внутри view