我是EF的新手,我正在寻找使用我自己的类型。 我可以使用此类型将其映射到数据库中的字段。 通常我应该映射:
DateTime to Date(Oracle)
我需要映射:
MyDateType to Date(Oracle)
有人可以帮助我吗? 可能吗?也许其他ORM可以做到吗?
答案 0 :(得分:0)
你可以使用你自己类型的另一个未映射的属性:
public DateTime Date{ get; set; }//this is mapped to db
[NotMapped]
public MyDateType MyDateTimeProperty
{
get { return /*conversion from DateTime to MyDateType */; }
set { Date= /*conversion from MyDateType to DateTime*/; }
}