保存实体对象时,可以使用实体框架中的SQL函数getutcdate()在数据库中设置日期字段吗?
问候
弗雷迪
最佳答案
是的,您可以这样做。 CLR函数DateTime.UtcNow
is mapped to the canonical function CurrentUtcDateTime
(应转换为SQL Server的或类似名称)。
var q = from e in Context.MyEntities
select new
{
Entity = e,
Time = DateTime.UtcNow
};
关于c# - Entity Framework ,getutcdate(),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1888004/