Hi.
I have an Article entity with one component.
public ArticleMap()
{
//...
Component(x => x.Info, y =>
{
y.Map(x => x.IsNews).Not.Nullable();
y.Map(x => x.Published).Not.Nullable();
y.Map(x => x.Saved).Not.Nullable();
}).LazyLoad();
}
It nice works with lazy load, but in one query I need to check one
field from this component
ICriteria criteria = Session.CreateCriteria<Article>()
.SetFirstResult(min)
.SetMaxResults(max)
.CreateCriteria("Info")
.Add(Expression.Eq("Published", true));
This query doesn't work. I have exception, that Published field is not
definied in Article.
How can I query entity by field contained in component?
--
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.