我有一个实体模型,其中包含Person
和的实体LogPerson
。它们是相同的,只是LogPerson
有 2 个附加字段 ( LogPersonID
, CreateDate
)。如何将aLogPerson
转换为 aPerson
以便跟随我的 Linq 代码的 VB.NET 代码不必尝试使用这两种可能的类型?
例如:
dim p as person
If useLog then
p = From a In LogPerson Where ID = x
Else
p = From a In Person Where ID = x
End If
textbox1.text = p.firstname