POCO对象中的接口字段未保存在EF数据库中

时间:2014-10-12 22:44:38

标签: c# entity-framework interface

假设我在POCO对象P中有以下字段:

public IInstrument Instrument { get; private set; }

with interface" IInstrument"定义为:

public interface IInstrument
{
    decimal GetMarketValue();
    decimal Price { get; set; }
    DateTime CreationDateTime { get; }
}

保存POCO对象P时,属性字段" Instrument"没有保存。 我该如何解决这个问题?

0 个答案:

没有答案