我正尝试将以下类迁移到MySQL数据库,以便数据库中的DateTime精度为6,但是迁移默认为0,因此我将2019-06-12 13:04:56作为我数据库中的数据与我打算的2019-06-12 13:04:56.726446相反
我一直找不到能使我编辑Datatime的数据注释。
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestMySql.Models
{
class InstructionsCxl
{
[Key]
[Required]
[StringLength(50)]
public string InstructionId { get; set; }
[Required]
public DateTime Instantiated { get; set; }
}
}
以2019-06-12 13:04:56.726446格式查看数据库中的数据时间