コード例 #1
0
        /// <summary>
        /// The "O" or "o" standard format specifier represents a custom date and time format string using a pattern that preserves time zone information and emits a result string that complies with ISO 8601.
        /// https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-date-and-time-format-strings#the-round-trip-o-o-format-specifier
        /// </summary>
        /// <param name="map"></param>
        /// <param name="index"></param>
        public static void SetISO8601DateFormat(MemberMap map, int index)
        {
            map.TypeConverterOption.Format("O");
            map.Index(index);

            return;
        }
コード例 #2
0
        private static void setUserDefaultBooleanFormat(MemberMap map, int index)
        {
            map.Name("default");
            map.TypeConverterOption.BooleanValues(false, false, new string[] { "null", "FALSE" });
            map.TypeConverterOption.BooleanValues(true, false, new string[] { "TRUE" });
            map.Index(index);

            return;
        }