Hi, just wondered if anyone know if there is a way to crate a Many-to-Many relationship table automatically using some attribute? without creating the table, or mapping a class to become that relation table.
If i add the attribute [ManyToMany(3,Class="DeploymentListUsers")] i get an error that this class isn't mapped to the DB.
NHibernate.MappingException: An association from the table Users refers to an unmapped class:
I don't want to define the class myself, nor creating the table in the DB before hand.
it's seems possible in JAVA, does fluent NHibernate is a fully implemented version of hibernate and JPA annotations?
http://www.hiberbook.com/HiberBookWeb/learn.jsp?tutorial=19mappingmanytomanyrelationships
Thanks, Itay