I love the new inheritance feature but want to be able to do something like this:
Say I have a base class Entity Base and in the designer I create a class SubClass the inherits from base. And say I have another Collection SomeClass that contains a collection of Base. What I want to do is:
SomeClass someClass = new SomeClass("foo")
someClass.SubClass
but all I can do is
someClass.Base
Can I do this without creating a predicate to filter? I tried adding the SomeClass subclass relation in the editor but the code will not compile if I do so (creates duplicate methods).