Because this is quite an exotic situation, there is no build in support for that. But you can make it look nice.
For now you have something like that assuming your join table is called E1E2.
public partial class E1
{
public Guid Id { get; set; }
public IQueryable<E1E2> Stack { get; }
}
public partial class E2
{
public Guid Id { get; set; }
public IQueryable<E1E2> In { get; }
}
public partial class E1E2
{
public E1 E1 { get; set; }
public E2 E2 { get; set; }
public Int32 Position { get; set; }
}
As hoc I cannot come up with an better solution to map this to a database. To make the usage as smart as posible just add some properties and methods to the entities. This is easy because the entites a generated as partial classes.
Extend the class E1 with something as follows.
public partial class E1
{
public IQueryable<E2> NiceStack
{
get { return this.Stack.Select(s => s.E2).OrderBy(s => s.Position); }
}
public void Push(E2 e2)
{
this.Stack.Add(
new E1E2
{
E2 = e2,
Position = this.Stack.Max(s => s.Position) + 1
});
}
public E2 Pop()
{
return this.Stack.
Where(s => s.Position == this.Stack.Max(s => s.Position).
Select(s => s.E2).
First()Single();
}
}
Extend the class E2 with something as follows.
public partial class E2
{
public IQueryable<E1> NiceIn
{
get { return this.In.Select(i => i.E1); }
}
public IQueryable<E1> NiceTop
{
get
{
return this.In.
Where(i => i.Index i.Position == i.E1.Stack.Max(s => s.Position)).
Select(i => i.E1);
}
}
}
End there you are. Now it should be possible to write quite nice code around this entities. Probably there are some bugs in the code but the idea should be clear. I left out the code to ensure that related properties are loaded when accessed. You could further make the original properties privat and hide them frome the outside. Maybe you should not include the NiceStack property because this allows random access. Or maybe you want to add more extension - maybe make NiceTop writable pushing an E2 instance onto the stack of an E1 instance inserted into NiceTop of the E2 instance. But the idea remains the same.
The call to Single() will not work with the normal Entity Framework; instead use ToList().Single() to switch to LINQ to Object or use First() but first does not preserve the semantic of exactly one.
