Hi all.
In action I taken some data from db. Now in view I want to take value
from one field which is referenced from other table with lazyload, by
I get this error: Could not initialize proxy - no Session

I wonder what I can do with it.

public ActionResult Index()
        {
            using (NHUnitOfWork.Start())
            {
                var news = articlesRepository.News(0, 20);
                return View(news);
            }
        }

<%= Html.ActionLink(Html.Encode(Model.Author.Login), "zyx", "xyz") %>

 public ArticleMap()
        {
            References(x =>
x.Author).Not.Nullable().LazyLoad().Column("Author").Cascade.SaveUpdate();
         //...
        }

    public class Article : EntityBase<int>
    {
        public virtual User Author { get; set; }
         //...
    }

-- 
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en.

Reply via email to