国产探花免费观看_亚洲丰满少妇自慰呻吟_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#教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 金坛市| 读书| 马公市| 江北区| 曲靖市| 中阳县| 中超| 绥棱县| 太保市| 栾城县| 宁夏| 绍兴县| 遂宁市| 大兴区| 南京市| 会同县| 阳谷县| 古田县| 鸡西市| 丰宁| 乌海市| 宁乡县| 阳城县| 休宁县| 贵州省| 进贤县| 呼和浩特市| 永城市| 芮城县| 铅山县| 叙永县| 宜君县| 宝坻区| 吉隆县| 攀枝花市| 隆回县| 都昌县| 唐河县| 霍林郭勒市| 温宿县| 大洼县|