Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/278.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/linq/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何通过在linq查询中选择将天添加到datetime_C#_Linq_Datetime - Fatal编程技术网

C# 如何通过在linq查询中选择将天添加到datetime

C# 如何通过在linq查询中选择将天添加到datetime,c#,linq,datetime,C#,Linq,Datetime,我试图通过添加天来选择可为空的datetime 作为实例 COMPLETE_TIME = (x.VISIT_DATE.HasValue ? x.VISIT_DATE.Value.AddDays(1) : (DateTime?)null) 如果datetime有值,我想通过选择上面的查询添加1天 若datetime并没有值,我想通过如上选择query来设置可为空的datetime 但是,如果我尝试上面的代码,我会得到错误(请检查底部的错误) 所有查询: var result= (from s

我试图通过添加天来选择可为空的datetime

作为实例

COMPLETE_TIME = (x.VISIT_DATE.HasValue ? x.VISIT_DATE.Value.AddDays(1) : (DateTime?)null)
如果datetime有值,我想通过选择上面的查询添加1天

若datetime并没有值,我想通过如上选择query来设置可为空的datetime

但是,如果我尝试上面的代码,我会得到错误(请检查底部的错误)

所有查询:

var result=

 (from s in context.SURVEYs
 join x in context.SURVEY_X on s.SURVEY_ID equals x.SURVEY_ID
 join sas in context.SURVEY_ANSWER_SELECTION on s.SURVEY_ID equals sas.SURVEY_ID 
 join o in context.REP_OPTION on sas.OPTION_ID equals o.OPTION_ID

    from PCO in context.REP_PARENT_CHILD_OPTIONS.Where(w => w.CHILD_OPTION_ID == sas.OPTION_ID).DefaultIfEmpty()

    where
    (s.SURVEY_ID == 5 || s.PARENT_SURVEY_ID == 5) && 
    o.SUGGESTION != null &&
    PCO.PARENT_OPTION_ID == null
      select new
      {
        SUGGESTION = o.SUGGESTION,
        DISPLAY_ORDER = "0",
        SUGGESTION_TYPE = o.SUGGESTION_TYPE,
        o.EXAMPLE_IMAGE_ID,

COMPLETE_TIME = (x.VISIT_DATE.HasValue ? x.VISIT_DATE.Value.AddDays(1) : (DateTime?)null) // Problem in this part

      }).ToList();
An exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll but was not handled in user code

Additional information: LINQ to Entities does not recognize the method 'System.DateTime AddDays(Double)' method, and this method cannot be translated into a store expression.
错误:

var result=

 (from s in context.SURVEYs
 join x in context.SURVEY_X on s.SURVEY_ID equals x.SURVEY_ID
 join sas in context.SURVEY_ANSWER_SELECTION on s.SURVEY_ID equals sas.SURVEY_ID 
 join o in context.REP_OPTION on sas.OPTION_ID equals o.OPTION_ID

    from PCO in context.REP_PARENT_CHILD_OPTIONS.Where(w => w.CHILD_OPTION_ID == sas.OPTION_ID).DefaultIfEmpty()

    where
    (s.SURVEY_ID == 5 || s.PARENT_SURVEY_ID == 5) && 
    o.SUGGESTION != null &&
    PCO.PARENT_OPTION_ID == null
      select new
      {
        SUGGESTION = o.SUGGESTION,
        DISPLAY_ORDER = "0",
        SUGGESTION_TYPE = o.SUGGESTION_TYPE,
        o.EXAMPLE_IMAGE_ID,

COMPLETE_TIME = (x.VISIT_DATE.HasValue ? x.VISIT_DATE.Value.AddDays(1) : (DateTime?)null) // Problem in this part

      }).ToList();
An exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll but was not handled in user code

Additional information: LINQ to Entities does not recognize the method 'System.DateTime AddDays(Double)' method, and this method cannot be translated into a store expression.
问题:

var result=

 (from s in context.SURVEYs
 join x in context.SURVEY_X on s.SURVEY_ID equals x.SURVEY_ID
 join sas in context.SURVEY_ANSWER_SELECTION on s.SURVEY_ID equals sas.SURVEY_ID 
 join o in context.REP_OPTION on sas.OPTION_ID equals o.OPTION_ID

    from PCO in context.REP_PARENT_CHILD_OPTIONS.Where(w => w.CHILD_OPTION_ID == sas.OPTION_ID).DefaultIfEmpty()

    where
    (s.SURVEY_ID == 5 || s.PARENT_SURVEY_ID == 5) && 
    o.SUGGESTION != null &&
    PCO.PARENT_OPTION_ID == null
      select new
      {
        SUGGESTION = o.SUGGESTION,
        DISPLAY_ORDER = "0",
        SUGGESTION_TYPE = o.SUGGESTION_TYPE,
        o.EXAMPLE_IMAGE_ID,

COMPLETE_TIME = (x.VISIT_DATE.HasValue ? x.VISIT_DATE.Value.AddDays(1) : (DateTime?)null) // Problem in this part

      }).ToList();
An exception of type 'System.NotSupportedException' occurred in EntityFramework.SqlServer.dll but was not handled in user code

Additional information: LINQ to Entities does not recognize the method 'System.DateTime AddDays(Double)' method, and this method cannot be translated into a store expression.
如何在“选择部分”中选择“添加日期时间”或“空日期时间”

任何帮助都将不胜感激


谢谢。

如果您使用的是EF 6,您可以使用其中一个DBF函数

var result=

(from s in context.SURVEYs
join x in context.SURVEY_X on s.SURVEY_ID equals x.SURVEY_ID
join sas in context.SURVEY_ANSWER_SELECTION on s.SURVEY_ID equals sas.SURVEY_ID 
join o in context.REP_OPTION on sas.OPTION_ID equals o.OPTION_ID

from PCO in context.REP_PARENT_CHILD_OPTIONS.Where(w => w.CHILD_OPTION_ID == sas.OPTION_ID).DefaultIfEmpty()

   where
(s.SURVEY_ID == 5 || s.PARENT_SURVEY_ID == 5) && 
o.SUGGESTION != null &&
PCO.PARENT_OPTION_ID == null
  select new
  {
    SUGGESTION = o.SUGGESTION,
    DISPLAY_ORDER = "0",
    SUGGESTION_TYPE = o.SUGGESTION_TYPE,
    o.EXAMPLE_IMAGE_ID,

COMPLETE_TIME = (x.VISIT_DATE.HasValue ? Dbfunctions.AddDays(x.VISIT_DATE.value, 1) : (DateTime?)null) // Problem in this part

  }).ToList();