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

首頁 > 編程 > C# > 正文

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

2020-01-24 00:26:38
字體:
來源:轉載
供稿:網友

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為兩個時間屬性

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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 新竹市| 满城县| 泰兴市| 平利县| 衡阳市| 临城县| 温泉县| 呈贡县| 石泉县| 仙游县| 息烽县| 额尔古纳市| 荆州市| 离岛区| 西盟| 布尔津县| 永康市| 洛浦县| 广东省| 宜黄县| 崇仁县| 永昌县| 丹东市| 隆子县| 井研县| 永宁县| 儋州市| 包头市| 肇庆市| 视频| 九龙城区| 浮梁县| 上饶县| 绍兴县| 婺源县| 张家口市| 裕民县| 枝江市| 阳朔县| 翼城县| 嵩明县|