fluent nhibernate - Many to Many relationship with attribute on relationship
问题 I have my code working, but I'm getting 2 extra columns in the table/ddl, to represent a Many to Many relationship, ~~but~~ with attributes (scalars) on the relationship. I am using 1.2.0.712 (FluentNHibernate.dll) 3.1.0.4000 (NHibernate.dll) Entities: public partial class Employee { public Employee() { CommonConstructor(); } private void CommonConstructor() { this.MyEmployeeToJobTitleMatchLinks = new List<EmployeeToJobTitleMatchLink>(); } public virtual Guid? EmployeeUUID { get; set; }