码迷,mamicode.com
首页 > 数据库 > 详细

对数据库中时间为空的处理和数据转换成百分数

时间:2014-05-10 06:13:39      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:c   get   string   数据   a   set   

public System.DateTime LatestEditedTime { get; set; }
public string LatestEditedTimeValue
{
get
{
if (LatestEditedTime.ToString("yyyy-MM-dd HH:mm:ss").Equals ("1900-01-01 00:00:00"))
{
return " ";
}
else
{
return LatestEditedTime.ToString("yyyy-MM-dd HH:mm:ss"); ;
}
}
}

 

public System.Decimal Similarity { get; set; }

public string SimilarityVaule
{
get { return Similarity == -1 ? "" : Similarity.ToString("0%"); }
}

对数据库中时间为空的处理和数据转换成百分数,布布扣,bubuko.com

对数据库中时间为空的处理和数据转换成百分数

标签:c   get   string   数据   a   set   

原文地址:http://www.cnblogs.com/q101301/p/3719320.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!