Shopify api created_at_min 日期格式

Shopify api created_at_min date format

我只想在特定日期之后检索订单。基于 DOCUMENTATION

created_at_min 格式如下: 2014-04-25T16:15:47-04:00

我的数据库时间是这样的: 2019-11-20 12:19:57.650

他们的时间格式是什么?我怎样才能格式化为他们的格式类型?我的数据库时间是c#Datetime.Now

您可以使用 Convert.ToDateTime(s); 将字符串转换为日期时间,也可以使用 ToString

将字符串转换为日期时间
DateTime.Now.ToString("yyyy'-'MM'-'dd'T'HH':'mm':'ss");

更多信息你可以查看这个tutorial and this