Reputation: 1277
How do you tell NHibernate to ignore persisting a child object? I have my my mapping set up so a Person has an address so when I attempt to persist Person without an address or with a new address then gives a flushing error. Now I know I can Cascade, but is it possible to tell NHibnerate not to worry about the address?
Upvotes: 0
Views: 202
Reputation: 52725
You can:
You can't selectively ignore some objects.
Upvotes: 1