Ich brauche, um eine Klasse, die eine Liste von Enums zu einer DB-Tabelle, mit NHibernate abbilden hat
Hier sind die Objekte
public class Driver : IIdentity
{
private IList<Licence> licences;
/// <summary>
/// The drivers licences
/// </summary>
public virtual IList<Licence> Licences
{
get
{
return this.licences;
}
set
{
this.licences = value;
}
}
..... rest of the class ....
}
//the enum
public enum Licence
{
FivePersonCar = 5,
SixPersonCar = 6
}
---------------- Hier ist die DB-Tabelle
TABLE [dbo].[DriverLicence]( [DriverId] [int] NOT NULL, [Level] [int] NOT NULL)
TABLE [dbo].[Driver]( [DriverId] [int] NOT NULL, [Name] [varchar](150) NULL)
-------------Hier ist meine Fluent-Karte für Driver
public class DriverMap : ClassMap<Driver>
{
public DriverMap()
{
Id(x => x.Id).WithUnsavedValue(0).GeneratedBy.Identity();
Map(x => x.Name);
HasManyToMany(x => x.Licences)
.WithTableName("DriverLicence")
.AsElement("Level").AsBag();
HasManyToMany(x => x.InsuredToDrive)
.CollectionType<InsurancedList>()
.WithTableName("InsuredWith");
}
}
----- Dies erzeugt die folgende HBM-Datei
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" default-access="">
<class name="Taxi.DomainObjects.Driver, Taxi.DomainObjects, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" table="`Driver`" xmlns="urn:nhibernate-mapping-2.2">
<id name="Id" type="Int32" unsaved-value="0" column="DriverID">
<generator class="identity" />
</id>
<property name="Name" type="String">
<column name="Name" />
</property>
<bag name="Licences" table="DriverLicence">
<key column="DriverId" />
<many-to-many column="LicenceId" class="Taxi.DomainObjects.Licence, Taxi.DomainObjects, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</bag>
<bag name="InsuredToDrive" collection-type="Taxi.DomainObjects.Collections.InsurancedList, Taxi.DomainObjects, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" table="InsuredWith">
<key column="DriverId" />
<many-to-many column="CarId" class="Taxi.DomainObjects.Car, Taxi.DomainObjects, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" />
</bag>
</class>
</hibernate-mapping>
Hier ist mein Fehler
"Eine Assoziation aus der Tabelle DriverLicence verweist auf eine nicht abgebildete Klasse: Taxi.DomainObjects.Licence"
Weiß jemand, was ich falsch mache?