Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

NHibernate custom collection type

I'm having an entity object called Patient and this entity is having a property called Visits which is of type VisitsCollection. VisitsCollections is a child class of IList<Visit> but it also ...
2
votes
1answer
327 views

Using NHibernate Collection Filters with DDD collections

I am trying to map a domain model in NHibernate. The domain model is implemented with what I think is DDD style. The mapping works mostly but then when I try to use a collection filter on an a ...
1
vote
0answers
66 views

NHibernate: Manually handling collection of values reading using IStatelessSession

During bulk load of entities into a database, I have a scenario where an incoming entity relies on an existing entity in the database in order to compute a value. This dependency itself has a ...
1
vote
1answer
408 views

Fluent-Nibernate with wpf: Convention to use uNhAddIns…ObservableListType<T> as default?

I am trying to use Fluent-Nibernate with wpf that require Observable collections (implement the INotifyCollectionChanged interface). At uNHAddins: Unofficial addins for NHibernate i found the ...
1
vote
0answers
101 views

NHibernate Collection Mapping Help

I have a root object, Policy, that has a compositeKey of PolicyNumber/PolicyDate. The Policy has a one-to-many collection of PolicyDetails which have a composite key of ...
1
vote
2answers
501 views

NHibernate criteria on lazyload

Can anyone tell me if it's possible to add criteria to an NHibernate lazy loaded collection. For example let's say I have a department that contains employees... I get the department by id and then ...
1
vote
2answers
3k views

Fetch child without primary key NHibernate

I am trying to get a collection of objects into a parent object through mapping. I have a parent object "ScoreCard" whose primary key is a guid (Id) and a child "Score" object whose primary key is a ...
0
votes
1answer
63 views

Nhibernate iesicollection contains returns false

Nhibernate forces you to use an Iesi Set, instead of the net 4 ISet interface. In the following snippet of code I check whether an iesi set contains an item: public virtual void Remove(Substance ...
0
votes
2answers
162 views

Unusual NHibernate collection/inheritance mapping

Here are my relevant classes: public class ArticleMetadata { public long ID { get; set; } public string Slug { get; set; } } public class Article : ArticleMetadata { // This is a ...
0
votes
1answer
162 views

NHibernate - Sorting Entities based on Property/Column + how to manage?

I'm writting an ASP.NET MVC e-commerce app using NHibernate and I want the end-user to be able to control the ordering of Product Categories (not just have them appear alphebetically etc.). Normally, ...
0
votes
1answer
82 views

Updating the collections of entities with NHibernate the correct way

A simple question regarding how NHibernate works: I have a parent entity that has a collection of other child entities. Those child entities have a reference to the parent entity they belong to. Now I ...