国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C# > 正文

C# 判斷時間段是否相交的實現方法

2019-10-29 21:06:48
字體:
來源:轉載
供稿:網友

C# 判斷時間段是否相交的實現方法

1. 判斷兩個起止時間是否相交:

public static bool IsTimeBetween(TimeSpan input, TimeSpan start, TimeSpan end, bool fromInclusice, bool toInclusive)     {       //http://stackoverflow.com/questions/592248/how-can-i-check-if-the-current-time-is-between-in-a-time-frame       // see if start comes before end       if (end < start)       {         return           ((toInclusive && (input <= end)) || (!toInclusive && (input < end)))           ||           ((fromInclusice && (input >= start)) || (!fromInclusice && (input > start)));       }       else       {         return           ((fromInclusice && (input >= start)) || (!fromInclusice && (input > start)))           &&           ((toInclusive && (input <= end)) || (!toInclusive && (input < end)));       }       } 

2. 傳入起止時間的表達式,判斷與已知時間段的交集,生成Mongo查詢:

public IMongoQuery GetMongoQueryIntersectWith<TCollection>(       Expression<Func<TCollection, DateTime>> fromExp,        Expression<Func<TCollection, DateTime>> toExp)     {       var rangeTo = Query.And(Query<TCollection>.GTE(toExp, To), Query<TCollection>.LTE(fromExp, To));       var rangeFrom = Query.And(Query<TCollection>.GTE(toExp, From), Query<TCollection>.LTE(fromExp, From));        var rangeQuery = Query.Or(rangeTo, rangeFrom,          Query.And(Query<TCollection>.GTE(fromExp, From),Query<TCollection>.LTE(toExp, To)));       return rangeQuery;     } 

其中From和To為兩個時間屬性

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到c#教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 岫岩| 万盛区| 观塘区| 盐边县| 铜梁县| 江阴市| 洛浦县| 精河县| 墨江| 望都县| 沿河| 峨眉山市| 宁蒗| 博野县| 枣庄市| 鹤山市| 分宜县| 永宁县| 彭州市| 炉霍县| 长白| 镇赉县| 浏阳市| 蒙自县| 甘德县| 宁强县| 平安县| 新密市| 安阳市| 遵义市| 马鞍山市| 竹北市| 株洲市| 微山县| 托克托县| 商都县| 榆社县| 兰州市| 望谟县| 天气| 汉中市|