In my domain I have a Transport
which can access Endpoints
at certain positions, as such I have the following:
public class Transport
{
public IDictionary<Endpoint, int> AccessPointPosition { get; set; }
}
Now I'm trying to map the AccessPointPosition
through a combination of HasMany
and AsMap
, but I haven't succeeded in finding anything that passes the Fluent NHibernate configuration.
Am I overlooking something? Is this impossible? Is there any documentation on this subject?