我正在查看 Entity Framework,并且想知道如何加入 2 个对象,其中一个对象包含一个行版本列。
例如
public class Product
{
[Key, Column(Order = 1)]
public Guid ProductGuid {get;set;}
[Key, Column(Order = 2)]
public int RowVersion {get;set;}
public string DisplayName {get;set;}
// ... more properties ...
}
public class DeviceConfiguration
{
[Key]
public Product TheProduct {get;set;}
[Key]
public string WorkstationName {get;set;}
public string ConfigurationString {get;set;}
}
我怎样才能DeviceConfiguration
拿起Product
价值最高的行RowVersion
?