I have the following 3 entities:
class Match
{
IList<Possession> Possessions { get; set; }
IList<Action> Actions { get; set; }
}
class Possession
{
Match ParentMatch { get; set; }
Action StartAction { get; set; }
Action EndAction { get; set; }
}
class Action
{
Match ParentMatch { get; set; }
Possession ParentPossession { get; set; }
}
And the corresponding mapping:
mapper.Class< Possession >( cm =>
{
cm.ManyToOne( p => p.Match, pm =>
{
pm.Access( Accessor.Field );
pm.Column( "MatchId" );
} );
cm.ManyToOne( p => p.StartAction, pm =>
{
pm.Cascade( Cascade.Persist );
pm.Access( Accessor.Field );
pm.Column( "StartActionId" );
} );
cm.ManyToOne( p => p.EndAction, pm =>
{
pm.Cascade( Cascade.Persist );
pm.Access( Accessor.Field );
pm.Column( "EndActionId" );
pm.NotNullable( false );
} );
} );
mapper.Class< Action >( cm =>
{
cm.ManyToOne( a => a.Match, pm => pm.Column( "MatchId" ) );
cm.ManyToOne( a => a.Possession,
pm =>
{
pm.NotNullable( false );
pm.Column( "PossessionId" );
} );
} );
mapper.Class< Match >( cm =>
{
cm.Bag( m => m.Actions,
pm =>
{
pm.Cascade( Cascade.All | Cascade.DeleteOrphans );
pm.Key( km => km.Column( "MatchId" ) );
pm.Inverse( true );
pm.OrderBy( a => a.ActionsOrder );
},
rel => rel.OneToMany() );
cm.Bag( m => m.Periods,
pm =>
{
pm.Cascade( Cascade.All | Cascade.DeleteOrphans );
pm.Key( km => km.Column( "MatchId" ) );
pm.Inverse( true );
pm.OrderBy( p => p.PeriodsOrder );
},
rel => rel.OneToMany() );
cm.Bag( m => m.Possessions,
pm =>
{
pm.Cascade( Cascade.All | Cascade.DeleteOrphans );
pm.Key( km => km.Column( "MatchId" ) );
pm.Inverse( true );
pm.OrderBy( p => p.PossessionsOrder );
},
rel => rel.OneToMany() );
} );
I have a query which loads a Match, and I'd like the Possessions and Actions property to be retrieved from the database, and have their Ids set.
Sounds no big deal, but I can't succeed, as all of my possessions have an Id of 0.
I've tried to get the match like:
return Session.Get< Match >( id );
What's weird is that only the possessions don't have an id. The actions list is filled with entities which all have the correct id.
I've tried to deactivate the laziness of the collections in the mappings, but it didn't change anything. Neither did the change of the CollectionFetchMode to Select.
I've also tried to use NH's Future, but SQL Server CE doesn't support them.
So... I'm stuck
How could I fix this issue?