假设我在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"没有保存。 我该如何解决这个问题?