I have Organization and Article And I want to have an relation in the
database but not int the Organization object and not in the article
object.

I thought to make a  OrganizationAndArticleMapping that hade
Organization and Article as properties, but that would make an new
table which I don't need, i still want a column in my article table
with for example organizationid.

I could also make an mapping entity with Organizationd and then have a
list with articles that I just make an add(article) and then save it
but would it be the best approach when working with articles and
Organizations? I would prefer to not involve lazy loading.

Mappingobjects works just fine I use them behind my services so for
example

ArticleService.Persist(article) and articleservice has the
organization that has been injected through constructor injection.

How would I solve this in a neat way?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to nhusers@googlegroups.com
To unsubscribe from this group, send email to 
nhusers+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to