摘要: [DataContract] public class ResultEntity<T> { /// <summary> /// 返回码 /// </summary> [DataMember] public int ReturnCode { get; set; } /// <summary> /// 操作结果。 /// </summary> [DataMember] public virtual T Result { get; set; } ... 阅读全文
posted @ 2012-11-28 16:51 历史的驱动 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1:当设计到有多张表是通常提取需要的相关展示字段,然后把它封装成一个视图模型:比如 public class UserSearchView { public int UserId { get; set; } public string CompanyName { get; set; } public string CompanySiteURL { get; set; } public bool? IsBuildRelation { get; set; } /// <summary> /// 行业Id ... 阅读全文
posted @ 2012-11-28 11:50 历史的驱动 阅读(922) 评论(0) 推荐(0) 编辑