排序鉴别器

我有一个使用鉴别器的模型。 由于我无法分享原始代码,因此这里是一个模型

public class Dog {}

public class SomeDog : Dog {}

现在我想让我的实体按Discriminator进行排序,首先拥有SomeDog并且只有在这之后,才拥有我的Dog实体。

有什么方法可以对我的Discriminator进行实际排序吗? 或者我必须找到解决方法?


当你阅读上下文列表时,你是否尝试过排序?

例:

YourContext.Dogs.OrderBy(d => (d is SomeDog) ? 1 : 2)
链接地址: http://www.djcxy.com/p/14593.html

上一篇: Sort on discriminator

下一篇: Three.js First Person Controls moves the camera all the time