实体框架流畅的API将复杂类型映射到列

时间:2016-03-19 13:57:46

标签: c# entity-framework entity-framework-6

我有一个实体实体,其类型属性:

class Entity
{
    public int Id { get; set; }
    public Type UsedType { get; set; }
}

如何使用流畅的API告诉EF将此属性映射到 Type.FullName ,而不是尝试创建完整的类型表?

预计

实体表:

Id INT
UsedType TEXT -- Containing the value from Type.FullName string.

0 个答案:

没有答案