zoukankan      html  css  js  c++  java
  • 亲们,拿到DateTime.Now你是否也是这样比较的?

    项目中有了找回密码功能,我很高兴是由我做的,嘿嘿。

    测试了很多遍没有问题。结果还是无意中被别人发现了,“数据库中的失效时间(ExpiredDate)当前时间(DateTime.Now) 存在着 4 分多钟 的差距”,我一直是取的DateTime.Now 当前时间比较的啊!

    首先我们看看,下面的这行代码,

     var modelCode = LoadRepository.GetEntities<Entity.Verification_Code>().Where(i => i.Code.Equals(code) && i.ExpiredDate >= DateTime.Now).FirstOrDefault();

    根据Sql Server Profiler查看SQL,有了惊人的发现:=》 [Extent1].[ExpiredDate] >= GetDate() :

    也许你认为可能没有什么问题,但是我看了看查询分析器解析后的Sql,拿到的Sql中的DateTime.Now 却变成了GetDate(),这什么情况;

    exec sp_executesql N'SELECT TOP (1) 
    [Extent1].[VerificationID] AS [VerificationID], 
    [Extent1].[UserID] AS [UserID], 
    [Extent1].[Code] AS [Code], 
    [Extent1].[AddDate] AS [AddDate], 
    [Extent1].[ExpiredDate] AS [ExpiredDate], 
    [Extent1].[Status] AS [Status]
    FROM [dbo].[Verification_Code] AS [Extent1]
    WHERE ([Extent1].[Code] = @p__linq__0) AND ([Extent1].[ExpiredDate] >= (GetDate()))
    ',N'@p__linq__0 varchar(8000)',
    @p__linq__0=
    'f784222508ce4e859426fd0c8b95df8f'

    于是我试了试 在 select getdate(); 发现真的 getdate() 与 当前时间存在着误差

    我可能明白了,DateTime.Now放在Where中不能进行比较。因为Linq只能与定值进行比较。所以先要转成值。

    修改如下:

      var dateTime = DateTime.Now;
      var modelCode = LoadRepository.GetEntities<Entity.Verification_Code>().Where(i => i.Code.Equals(code) && i.ExpiredDate >= dateTime).FirstOrDefault();

    根据Sql Server Profiler查看SQL,问题解决了,DateTime.Now回来了。@p__linq__1='2013-05-28 15:25:37.8470000'

    exec sp_executesql N'SELECT TOP (1) 
    [Extent1].[VerificationID] AS [VerificationID], 
    [Extent1].[UserID] AS [UserID], 
    [Extent1].[Code] AS [Code], 
    [Extent1].[AddDate] AS [AddDate], 
    [Extent1].[ExpiredDate] AS [ExpiredDate], 
    [Extent1].[Status] AS [Status]
    FROM [dbo].[Verification_Code] AS [Extent1]
    WHERE ([Extent1].[Code] = @p__linq__0) AND ([Extent1].[ExpiredDate] >= @p__linq__1)',
    N
    '@p__linq__0 varchar(8000),@p__linq__1 datetime',
    @p__linq__0=
    'f784222508ce4e859426fd0c8b95df8f',
    @p__linq__1=
    '2013-05-28 15:25:37.8470000'

    总结:希望亲们不要像我这样菜,也可能这个错误只有我一个人犯,细节真的让人觉得学习是很快乐的一件事!

  • 相关阅读:
    第一次结对编程作业
    第一次个人编程作业
    获取file中字段,写入到TXT文件中
    通过file中的字段查询MySQL内容
    MySQL常用语句
    MySQL乱码问题
    脚本数据编码格式转换
    mysql 常用命令操作
    thinkphp项目 Class 'finfo' not found
    POJ3255--次短路
  • 原文地址:https://www.cnblogs.com/Kummy/p/3103837.html
Copyright © 2011-2022 走看看