gpt4 book ai didi

c# - Entity Framework ,getutcdate()

转载 作者:行者123 更新时间:2023-11-30 21:23:14 25 4
gpt4 key购买 nike

我可以使用 Entity Framework 中的 SQL 函数 getutcdate() 在保存实体对象时在数据库中设置日期字段吗?

最佳答案

是的,你可以做到这一点。 CLR函数DateTime.UtcNow is mapped to the canonical function CurrentUtcDateTime ,对于 SQL Server 应该转换为 GETUTCDATE() 或类似的。

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com