Linq to sql 有将datetime转换为string类型方法吗

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linq to sql 有将datetime转换为string类型方法吗相关的知识,希望对你有一定的参考价值。

参考技术A public string DateToString

    get  return yourdate.ToString("MM,dd,yyyy"); 

参考技术B using Newtonsoft.Json;
Newtonsoft.Json.Converters.IsoDateTimeConverter iso = new Newtonsoft.Json.Converters.IsoDateTimeConverter();
iso.DateTimeFormat = "yyyy-MM-dd hh:mm";
var bgmain = (from b in db.Bg_Mains
where b.organize_id == code.id
select new

b.id,
b.port_no,
b.logical_check_dt, //审核时间
);
return Content(JsonConvert.SerializeObject(bgmain, iso));本回答被提问者采纳

以上是关于Linq to sql 有将datetime转换为string类型方法吗的主要内容,如果未能解决你的问题,请参考以下文章

Linq to SQL DateTime 值是本地的(Kind=Unspecified)-如何使它成为 UTC?

LINQ体验(11)——LINQ to SQL语句之Null语义和String/DateTime方法

Linq to SQL 选择 DateTime 字段在任何日期范围列表中的行

LINQ to nHibernate - 将 SQL“NOT IN”表达式转换为 LINQ

不支持 Linq-to-EF DateTime.ToLocalTime

将日期时间转换为 LINQ-to-entities 查询中的格式化字符串