Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
I've changed the list type of Possessions and Actions to ISet, just in case, but that doesn't work either. I've forgotten to say that the problem in having ids equal to 0 is that the Id is needed by a property I use to maintain the order of the possessions: public int PossessionsOrder { get { if (match == null || !match.Possessions.Contains(this)) return -1; return match.Possessions.IndexOf(this); } set { } } As I get 0 for the possessions, the order becomes completely screwed up... – Mike Jan 20 '12 at 23:53
BTW, I know that I could map my collections to List instead of Bag, and make use of the index property. But I have problems this way too, because I have Inverse=true on the relationship between the entities, and this inserts null indexes in the DB – Mike Jan 21 '12 at 0:02
you can use Orderby on bag if you dont want an list index column. – Firo Jan 23 '12 at 10:35
@Firo I know, and tried, using a property for the Order (see my first comment). But as this property was relying on the Id for the Equals function used by the IndexOf function, and since my id were all equal to 0, the property was always returning -1 – Mike Jan 23 '12 at 12:51
i mean you can have an sql orderby clause in the mapping so that on loading the order is determined by the orderby clause – Firo Jan 23 '12 at 13:08
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.