在ServiceStack服务请求和响应dto中隐藏一些公共属性
本文关键字:隐藏 属性 dto 服务 ServiceStack 请求 求和 响应 | 更新日期: 2023-09-27 18:16:39
我正在使用ServiceStack构建一些服务,我有以下服务
public class FooRequest: IReturn<FooResponse>
{
public int FooID { get; set; }
public decimal Amount { get; set; }
public string SortColumnName { get; set; }
}
public class FooResponse
{
private List<Payment> payments;
public FooResponse()
{
payments= new List<Payment>();
}
public List<Payment> Payments
{
get { return payments; }
set { payments = value; }
}
}
public class Payment
{
public int ID { get; set; }
public string Amount { get; set; } // Amount is formatted string based on the user language
public decimal PaymentAmount{ get; set; } // this is Alias for Amount
}
从上面的FooResponse,我不想在response/metadata
中显示PaymentAmount。
如果我们把它作为普通变量而不是属性,它将在元数据中不可见。但这应该是其他要求的性质。
在ServiceStack
中是否有可能在响应DTO时限制某些属性?
在PaymentAmount
属性上使用IgnoreDataMember
属性。上次我检查ServiceStack是否使用并遵循默认的。net序列化属性