简体   繁体   English

如何使用实体框架在C#,ASP.NET MVC 3中的两个日期之间获取记录?

[英]How to get records between two dates in C#, ASP.NET MVC 3 using Entity Framework?

I am not able to get records between two dates. 我无法在两个日期之间获取记录。

I tried using a normal query, but I am not getting any results: 我尝试使用普通查询,但未得到任何结果:

 log.Info("Parameters Received...");
 log.Info("name:"+param1); // => "SELECT"
 log.Info("city:"+param2); // => "SELECT"
 log.Info("userId :"+userId); // =>""
 log.Info("creationDateFrom :"+creationDateFrom); // => 10/07/2018
 log.Info("creationDateTo :"+creationDateTo); // => 12/07/2018     

var report = reportDBObj.tbl_reports.AsQueryable();

if (param1 != null && !param1.Equals("SELECT")) 
     report = report.Where(x => x.name == param1);

if (param2 != null && !param2.Equals("SELECT")) 
     report = report.Where(x => x.city == param2);

if (userId != null && userId != "") 
     report = report.Where(x => x.user_id == userId);

Boolean dateCheck = false;
DateTime createDateFrom = DateTime.MinValue, createDateTo = DateTime.MinValue;

if (!string.IsNullOrEmpty(creationDateFrom))
{
    // createDateFrom = Convert.ToDateTime(creationDateFrom);
    createDateFrom = DateTime.Parse(creationDateFrom);
    dateCheck = true;
}

if (!string.IsNullOrEmpty(creationDateTo))
{
    // createDateTo = Convert.ToDateTime(creationDateTo);
    createDateTo = DateTime.Parse(creationDateTo);

    if (!dateCheck)
        dateCheck = true;
}

if (dateCheck)
{
    if (createDateFrom == DateTime.MinValue)
        createDateFrom = DateTime.Now;
    else if (createDateTo == DateTime.MinValue)
        createDateTo = DateTime.Now;
}

if (dateCheck)
{
    Debug.WriteLine("createDateFrom :" + createDateFrom);
    Debug.WriteLine("createDateTo :" + createDateTo);

    report = report.Where(x => x.creation_date >= createDateFrom && x.creation_date <= createDateTo); // this line returns no records
}

repListTbl = report.OrderByDescending(x => x.creation_date).ToList();

What's wrong with my code? 我的代码有什么问题?

Thanks 谢谢

Two ways to do so. 有两种方法。

First with two WHERE clause : 首先带有两个WHERE子句

var result = context.EntityName
             .Where(entry => entry.DateField >= StarDate.SelectedDate.Value)
             .Where(entry => entry.DateField <= EndDate.SelectedDate.Value).ToList();

Second with one WHERE clause and MIN MAX : 第二个带有一个WHERE子句和MIN MAX

    var result = context.YourEntityName.Where(entry => entry.DateField >= minDate 
                 && entry.DateField <= maxDate).ToList();

If non of this fetches any results, check your DB for the date format of the columns and that the records do indeed exist. 如果未取得任何结果,请检查您的数据库以获取列的日期格式,并且该记录确实存在。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM