public class User
{
public long Id {get;set;}
[References(typeof(City))]
public long CityId {get;set;}
[????]
public City {get;set;}
}
我正在尝试使用 ServiceStack.OrmLite。我同时使用 ReferenceKey(CityId) 和 Reference(City)。ReferenceKey 用于创建 Db,Reference 用于在我的代码中使用对象。