0

即使我的数据库中不存在该对象,我也可以映射一个抽象类吗?

例子:

public abstract class Type
{
  public string Id{get; set;}
}

和潜艇:

public class TypeA : Type
{
}

public class TypeB : Type
{
}

需要引用基类的类:

public class Other
{
  public Type MyType{get; set;}
}

我的数据库中不存在该类型,但我需要此映射到其他类中的引用,我如何映射它?

谢谢。

4

1 回答 1

1

我会让抽象类像一个“假”地图,现在我的问题已经解决了。谢谢。

于 2011-06-29T12:00:31.557 回答