9
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 用于在我的代码中使用对象。

4

2 回答 2

15

IgnoreAttribute .. 测试,它的工作原理。

于 2012-06-16T12:47:30.013 回答
2

试试[IgnoreDataMember]属性。

此属性将告诉 ServiceStack 库忽略此属性。

于 2013-08-28T16:31:38.240 回答