How do you handle look up values with NHibernate? For example, I have an Order entity and it has a BillingAddress property that is a value object named Address, it\'s simple if the Address object just
I\'m currently building a message board where I need to output the number of messages in a Thread. ID Name
I\'ve got to columns in a legacy schema, that I\'d like to map as a component (aka value type). The reference to the component/value type is of private scope.
We\'re extensively using NHibernate multi-query functionality and experiencing strange behavior. Seems like NHibernate does not cache multiqueries and they always hit the database. We\'re using QueryO
I\'m having a problem mapping to IDictionary using the new Loquacious configuration. Here\'s the class:
I have the following code: foreach (CheckedListBoxItem item in cbAttributes.Items) { if (item.CheckState == CheckState.Checked)
I\'m working on a system that performs bulk processing using NHibernate. I know that NHibernate was not designed for bulk processing, but nonetheless the system is working perfectly thanks to a number
I have a standard one-to-many relationship between two objects, Person and Order.This is represented in my object model as a collection of orders on the Person.This manife开发者_如何学JAVAsts itself i
Say I have an immutable ICompositeUserType to deal with a DateRange, or Money, and then it turns out that I have another value object (ie, immutable) that has either a DateRange or Money property valu
This post: http://kennytordeur.blogspot.com/2011/04/nhibernate-in-combination-with_06.html Describes how to load an entity from a resource other than a database, in this case a webservice. This is g