Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
EntityFramework に秒単位の精度で日付を保存させたいと思います。
どうやってやるの ?
私が理解していれば、次のように日時フィールドを設定できます。
obj.Field = DateTime.Now.AddDays(1).ToString("yyyy-MM-dd hh:mm:ss");
また
obj.Field = dateTime.AddTicks( - (dateTime.Ticks % TimeSpan.TicksPerSecond));