This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mongodump | |
| net stop MongoDB | |
| rmdir C:\data\db /S /Q | |
| mkdir C:\data\db | |
| net start MongoDB | |
| mongorestore | |
| rmdir dump /S /Q |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class DateTimeExtensions | |
| { | |
| private static readonly TimeZoneInfo TimeZoneInfo = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time"); | |
| public static DateTime ConvertLocalBritishTimeToUtc(this DateTime dateTime) | |
| { | |
| var isSummer = TimeZoneInfo.IsDaylightSavingTime(dateTime); | |
| if (isSummer) | |
| { |
NewerOlder