/******************************************************************************* * Copyright © 2017-2020 Znyc.Recruitment.Admin.Framework 版权所有 * Author: Znyc * Description: Znyc快速开发平台 * Website:http://www.Znyc.Recruitment.Admin.com *********************************************************************************/ using System; using System.Collections; using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Runtime.Serialization.Formatters.Binary; using System.Text; using System.Text.RegularExpressions; using System.Web; using System.Xml; using System.Xml.Linq; namespace Znyc.Recruitment.Admin.Commons.Extensions { /// /// 对象自定义扩展类 /// public static class ObjectExtension { private static readonly Regex BoolRegex = new("(?(true|false))", RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex IntRegex = new("(?-?\\d+)", RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex DecimalRegex = new("(?-?\\d+(\\.\\d+)?)", RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex DateTimeRegex = new( "(?(((\\d+)[/年-](0?[13578]|1[02])[/月-](3[01]|[12]\\d|0?\\d)[日]?)|((\\d+)[/年-](0?[469]|11)[/月-](30|[12]\\d|0?\\d)[日]?)|((\\d+)[/年-]0?2[/月-](2[0-8]|1\\d|0?\\d)[日]?))(\\s((2[0-3]|[0-1]\\d)):[0-5]\\d:[0-5]\\d)?)" , RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex TimeSpanRegex = new( "(?-?(\\d+\\.(([0-1]\\d)|(2[0-3])):[0-5]\\d:[0-5]\\d)|((([0-1]\\d)|(2[0-3])):[0-5]\\d:[0-5]\\d)|(\\d+))" , RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex GuidRegex = new( "(?\\{{0,1}([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}\\}{0,1})" , RegexOptions.IgnoreCase | RegexOptions.Singleline); private static readonly Regex MobileRegex = new("^1[3|4|5|7|8][0-9]\\d{4,8}$"); private static readonly Regex EmailRegex = new("^([a-zA-Z0-9_-])+@([a-zA-Z0-9_-])+((\\.[a-zA-Z0-9_-]{2,3}){1,2})$"); /// /// 将集合转换为数据集。 /// /// 转换的元素类型。 /// 集合。 /// 是否生成泛型数据集。 /// 数据集。 public static DataSet ToDataSet(this IEnumerable list, bool generic = true) { return ListToDataSet(list, generic); } /// /// 将集合转换为数据集。 /// /// 集合。 /// 是否生成泛型数据集。 /// 数据集。 public static DataSet ToDataSet(this IEnumerable list, bool generic = true) { return ListToDataSet(list, generic); } /// /// 将集合转换为数据集。 /// /// 转换的元素类型。 /// 集合。 /// 是否生成泛型数据集。 /// 数据集。 public static DataSet ToDataSet(this IEnumerable list, bool generic = true) { return ListToDataSet(list, typeof(T), generic); } /// /// 将实例转换为集合数据集。 /// /// 实例类型。 /// 实例。 /// 是否生成泛型数据集。 /// 数据集。 public static DataSet ToListSet(this T o, bool generic = true) { if (o is IEnumerable) { return ListToDataSet(o as IEnumerable, generic); } return ListToDataSet(new[] { o }, generic); } /// /// 将可序列化实例转换为XmlDocument。 /// /// 实例类型。 /// 实例。 /// XmlDocument。 public static XmlDocument ToXmlDocument(this T o) { XmlDocument xmlDocument = new XmlDocument { InnerXml = o.ToListSet().GetXml() }; return xmlDocument; } public static object ChangeType(this object convertibleValue, Type type) { if (null == convertibleValue) { return null; } try { if (type == typeof(Guid) || type == typeof(Guid?)) { string value = convertibleValue.ToString(); if (value == "") { return null; } return Guid.Parse(value); } if (!type.IsGenericType) { return Convert.ChangeType(convertibleValue, type); } if (type.ToString() == "System.Nullable`1[System.Boolean]" || type.ToString() == "System.Boolean") { if (convertibleValue.ToString() == "0") { return false; } return true; } Type genericTypeDefinition = type.GetGenericTypeDefinition(); if (genericTypeDefinition == typeof(Nullable<>)) { return Convert.ChangeType(convertibleValue, Nullable.GetUnderlyingType(type)); } } catch { return null; } return null; } /// /// 获取对象里指定成员名称 /// /// /// 格式 Expression> exp = x => new { x.字段1, x.字段2 };或x=>x.Name /// public static string[] GetExpressionProperty(this Expression> properties) { if (properties == null) { return new string[] { }; } if (properties.Body is NewExpression) { return ((NewExpression)properties.Body).Members.Select(x => x.Name).ToArray(); } if (properties.Body is MemberExpression) { return new[] { ((MemberExpression)properties.Body).Member.Name }; } if (properties.Body is UnaryExpression) { return new[] { ((properties.Body as UnaryExpression).Operand as MemberExpression).Member.Name }; } throw new Exception("未实现的表达式"); } /// /// 将集合转换为数据集。 /// /// 集合。 /// 转换的元素类型。 /// 是否生成泛型数据集。 /// 转换后的数据集。 private static DataSet ListToDataSet(IEnumerable list, Type t, bool generic) { DataSet ds = new DataSet("Data"); if (t == null) { if (list != null) { foreach (object i in list) { if (i == null) { continue; } t = i.GetType(); break; } } if (t == null) { return ds; } } ds.Tables.Add(t.Name); //如果集合中元素为DataSet扩展涉及到的基本类型时,进行特殊转换。 if (t.IsValueType || t == typeof(string)) { ds.Tables[0].TableName = "Info"; ds.Tables[0].Columns.Add(t.Name); if (list != null) { foreach (object i in list) { DataRow addRow = ds.Tables[0].NewRow(); addRow[t.Name] = i; ds.Tables[0].Rows.Add(addRow); } } return ds; } //处理模型的字段和属性。 FieldInfo[] fields = t.GetFields(); PropertyInfo[] properties = t.GetProperties(); foreach (FieldInfo j in fields) { if (!ds.Tables[0].Columns.Contains(j.Name)) { if (generic) { ds.Tables[0].Columns.Add(j.Name, j.FieldType); } else { ds.Tables[0].Columns.Add(j.Name); } } } foreach (PropertyInfo j in properties) { if (!ds.Tables[0].Columns.Contains(j.Name)) { if (generic) { ds.Tables[0].Columns.Add(j.Name, j.PropertyType); } else { ds.Tables[0].Columns.Add(j.Name); } } } if (list == null) { return ds; } //读取list中元素的值。 foreach (object i in list) { if (i == null) { continue; } DataRow addRow = ds.Tables[0].NewRow(); foreach (FieldInfo j in fields) { MemberExpression field = Expression.Field(Expression.Constant(i), j.Name); LambdaExpression lambda = Expression.Lambda(field); Delegate func = lambda.Compile(); object value = func.DynamicInvoke(); addRow[j.Name] = value; } foreach (PropertyInfo j in properties) { MemberExpression property = Expression.Property(Expression.Constant(i), j); LambdaExpression lambda = Expression.Lambda(property); Delegate func = lambda.Compile(); object value = func.DynamicInvoke(); addRow[j.Name] = value; } ds.Tables[0].Rows.Add(addRow); } return ds; } /// /// 将集合转换为数据集。 /// /// 转换的元素类型。 /// 集合。 /// 是否生成泛型数据集。 /// 数据集。 private static DataSet ListToDataSet(IEnumerable list, bool generic) { return ListToDataSet(list, typeof(T), generic); } /// /// 将集合转换为数据集。 /// /// 集合。 /// 是否转换为字符串形式。 /// 转换后的数据集。 private static DataSet ListToDataSet(IEnumerable list, bool generic) { return ListToDataSet(list, null, generic); } /// /// 获取DataSet第一表,第一行,第一列的值。 /// /// DataSet数据集。 /// 值。 public static object GetData(this DataSet ds) { if ( ds == null || ds.Tables.Count == 0 ) { return string.Empty; } return ds.Tables[0].GetData(); } /// /// 获取DataTable第一行,第一列的值。 /// /// DataTable数据集表。 /// 值。 public static object GetData(this DataTable dt) { if ( dt.Columns.Count == 0 || dt.Rows.Count == 0 ) { return string.Empty; } return dt.Rows[0][0]; } /// /// 获取DataSet第一个匹配columnName的值。 /// /// 数据集。 /// 列名。 /// 值。 public static object GetData(this DataSet ds, string columnName) { if ( ds == null || ds.Tables.Count == 0 ) { return string.Empty; } foreach (DataTable dt in ds.Tables) { object o = dt.GetData(columnName); if (!string.IsNullOrEmpty(o.ToString())) { return o; } } return string.Empty; } /// /// 获取DataTable第一个匹配columnName的值。 /// /// 数据表。 /// 列名。 /// 值。 public static object GetData(this DataTable dt, string columnName) { if (string.IsNullOrEmpty(columnName)) { return GetData(dt); } if ( dt.Columns.Count == 0 || dt.Columns.IndexOf(columnName) == -1 || dt.Rows.Count == 0 ) { return string.Empty; } return dt.Rows[0][columnName]; } /// /// 将object转换为string类型信息。 /// /// object。 /// 默认值。 /// string。 public static string ToString(this object o, string t) { string info = string.Empty; if (o == null) { info = t; } else { info = o.ToString(); } return info; } /// /// 将DateTime?转换为string类型信息。 /// /// DateTime?。 /// 标准或自定义日期和时间格式的字符串。 /// 默认值。 /// string。 public static string ToString(this DateTime? o, string format, string t) { string info = string.Empty; if (o == null) { info = t; } else { info = o.Value.ToString(format); } return info; } /// /// 将TimeSpan?转换为string类型信息。 /// /// TimeSpan?。 /// 标准或自定义时间格式的字符串。 /// 默认值。 /// string。 public static string ToString(this TimeSpan? o, string format, string t) { string info = string.Empty; if (o == null) { info = t; } else { info = o.Value.ToString(format); } return info; } /// /// 将object转换为截取后的string类型信息。 /// /// object。 /// 此实例中子字符串的起始字符位置(从零开始)。 /// 子字符串中的字符数。 /// 后缀。如果没有截取则不添加。 /// 截取后的string类型信息。 public static string ToSubString(this object o, int startIndex, int length, string suffix = null) { string inputString = o.ToString(string.Empty); startIndex = Math.Max(startIndex, 0); startIndex = Math.Min(startIndex, inputString.Length - 1); length = Math.Max(length, 1); if (startIndex + length > inputString.Length) { length = inputString.Length - startIndex; } if (inputString.Length == startIndex + length) { return inputString; } return inputString.Substring(startIndex, length) + suffix; } /// /// 将object转换为byte类型信息。 /// /// object。 /// 默认值。 /// byte。 public static byte ToByte(this object o, byte t = default) { if (!byte.TryParse(o.ToString(string.Empty), out byte info)) { info = t; } return info; } /// /// /// /// public static byte[] ToBytes(this object obj) { if (obj == null) { return null; } BinaryFormatter bf = new BinaryFormatter(); using (MemoryStream ms = new MemoryStream()) { bf.Serialize(ms, obj); return ms.ToArray(); } } /// /// /// /// public static object ToObject(this byte[] source) { using (MemoryStream memStream = new MemoryStream()) { BinaryFormatter bf = new BinaryFormatter(); memStream.Write(source, 0, source.Length); memStream.Seek(0, SeekOrigin.Begin); object obj = bf.Deserialize(memStream); return obj; } } /// /// 将object转换为char类型信息。 /// /// object。 /// 默认值。 /// char。 public static char ToChar(this object o, char t = default) { if (!char.TryParse(o.ToString(string.Empty), out char info)) { info = t; } return info; } /// /// 将object转换为int类型信息。 /// /// object。 /// 默认值。 /// int。 public static int ToInt(this object o, int t = default) { if (!int.TryParse(o.ToString(string.Empty), out int info)) { info = t; } return info; } /// /// 将object转换为double类型信息。 /// /// object。 /// 默认值。 /// double。 public static double ToDouble(this object o, double t = default) { if (!double.TryParse(o.ToString(string.Empty), out double info)) { info = t; } return info; } /// /// 将object转换为decimal类型信息。 /// /// object。 /// 默认值。 /// decimal。 public static decimal ToDecimal(this object o, decimal t = default) { if (!decimal.TryParse(o.ToString(string.Empty), out decimal info)) { info = t; } return info; } /// /// 将object转换为float类型信息。 /// /// object。 /// 默认值。 /// float。 public static float ToFloat(this object o, float t = default) { if (!float.TryParse(o.ToString(string.Empty), out float info)) { info = t; } return info; } /// /// 将object转换为long类型信息。 /// /// object。 /// 默认值。 /// long。 public static long ToLong(this object o, long t = default) { if (!long.TryParse(o.ToString(string.Empty), out long info)) { info = t; } return info; } /// /// 将object转换为bool类型信息。 /// /// object。 /// 默认值。 /// bool。 public static bool ToBool(this object o, bool t = default) { if (!bool.TryParse(o.ToString(string.Empty), out bool info)) { info = t; } return info; } /// /// 将object转换为sbyte类型信息。 /// /// object。 /// 默认值。 /// sbyte。 public static sbyte ToSbyte(this object o, sbyte t = default) { if (!sbyte.TryParse(o.ToString(string.Empty), out sbyte info)) { info = t; } return info; } /// /// 将object转换为short类型信息。 /// /// object。 /// 默认值。 /// short。 public static short ToShort(this object o, short t = default) { if (!short.TryParse(o.ToString(string.Empty), out short info)) { info = t; } return info; } /// /// 将object转换为ushort类型信息。 /// /// object。 /// 默认值。 /// ushort。 public static ushort ToUShort(this object o, ushort t = default) { if (!ushort.TryParse(o.ToString(string.Empty), out ushort info)) { info = t; } return info; } /// /// 将object转换为ulong类型信息。 /// /// object。 /// 默认值。 /// ulong。 public static ulong ToULong(this object o, ulong t = default) { if (!ulong.TryParse(o.ToString(string.Empty), out ulong info)) { info = t; } return info; } /// /// 将object转换为Enum[T]类型信息。 /// /// object。 /// 默认值。 /// Enum[T]。 public static T ToEnum(this object o, T t = default) where T : struct { if (!Enum.TryParse(o.ToString(string.Empty), out T info)) { info = t; } return info; } /// /// 将object转换为DateTime类型信息。 /// /// object。 /// 默认值。 /// DateTime。 public static DateTime ToDateTime(this object o, DateTime t = default) { if (t == default) { t = new DateTime(1753, 1, 1); } if (!DateTime.TryParse(o.ToString(string.Empty), out DateTime info)) { info = t; } return info; } /// /// 将object转换为TimeSpan类型信息。 /// /// object。 /// 默认值。 /// TimeSpan。 public static TimeSpan ToTimeSpan(this object o, TimeSpan t = default) { if (t == default) { t = new TimeSpan(0, 0, 0); } if (!TimeSpan.TryParse(o.ToString(string.Empty), out TimeSpan info)) { info = t; } return info; } /// /// 将object转换为Guid类型信息。 /// /// object。 /// 默认值。 /// Guid。 public static Guid ToGuid(this object o, Guid t = default) { if (!Guid.TryParse(o.ToString(string.Empty), out Guid info)) { info = t; } return info; } /// /// 从object中获取bool类型信息。 /// /// object。 /// bool。 public static bool? GetBool(this object o) { if (!bool.TryParse(BoolRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out bool info)) { return null; } return info; } /// /// 从object中获取int类型信息。 /// /// object。 /// int。 public static int? GetInt(this object o) { if (!int.TryParse(IntRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out int info)) { return null; } return info; } /// /// 从object中获取decimal类型信息。 /// /// object。 /// decimal。 public static decimal? GetDecimal(this object o) { if (!decimal.TryParse(DecimalRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out decimal info)) { return null; } return info; } /// /// 从object中获取double类型信息。 /// /// object。 /// double。 public static double? GetDouble(this object o) { if (!double.TryParse(DecimalRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out double info)) { return null; } return info; } /// /// 从object中获取正数信息。 /// /// object。 /// decimal。 public static decimal? GetPositiveNumber(this object o) { if (!decimal.TryParse(DecimalRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out decimal info)) { return null; } return Math.Abs(info); } /// /// 从object中获取DateTime?类型信息。 /// /// object。 /// DateTime?。 public static DateTime? GetDateTime(this object o) { if (!DateTime.TryParse( DateTimeRegex.Match(o.ToString(string.Empty)).Groups["info"].Value.Replace("年", "-").Replace("月", "-") .Replace("/", "-").Replace("日", ""), out DateTime info)) { return null; } return info; } /// /// 从object中获取TimeSpan?类型信息。 /// /// object。 /// TimeSpan?。 public static TimeSpan? GetTimeSpan(this object o) { if (!TimeSpan.TryParse(TimeSpanRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out TimeSpan info)) { return null; } return info; } /// /// 从object中获取Guid?类型信息。 /// /// object。 /// Guid?。 public static Guid? GetGuid(this object o) { if (!Guid.TryParse(GuidRegex.Match(o.ToString(string.Empty)).Groups["info"].Value, out Guid info)) { return null; } return info; } /// /// 将object转换为SqlServer中的DateTime?类型信息。 /// /// object。 /// 默认值。 /// DateTime?。 public static DateTime? GetSqlDateTime(this object o, DateTime t = default) { if (!DateTime.TryParse(o.ToString(string.Empty), out DateTime info)) { info = t; } if (info < new DateTime(1753, 1, 1) || info > new DateTime(9999, 12, 31)) { return null; } return info; } /// /// 读取XElement节点的文本内容。 /// /// XElement节点。 /// 默认值。 /// 文本内容。 public static string Value(this XElement xElement, string t = default) { if (xElement == null) { return t; } return xElement.Value; } /// /// 获取与指定键相关的值。 /// /// 键类型。 /// 值类型。 /// 表示键/值对象的泛型集合。 /// 键。 /// 默认值。 /// 值。 public static TValue GetValue(this IDictionary dictionary, TKey key, TValue t = default) { if (dictionary == null || key == null) { return t; } if (!dictionary.TryGetValue(key, out TValue value)) { value = t; } return value; } /// /// 获取与指定键相关或者第一个的值。 /// /// 键类型。 /// 值类型。 /// 表示键/值对象的泛型集合。 /// 键。 /// 默认值。 /// 值。 public static TValue GetFirstOrDefaultValue(this IDictionary dictionary, TKey key, TValue t = default) { if (dictionary == null || key == null) { return t; } if (!dictionary.TryGetValue(key, out TValue value)) { if (dictionary.Count() == 0) { value = t; } else { value = dictionary.FirstOrDefault().Value; } } return value; } /// /// 获取具有指定 System.Xml.Linq.XName 的第一个(按文档顺序)子元素。 /// /// XContainer。 /// 要匹配的 System.Xml.Linq.XName。 /// 是否返回同名默认值。 /// 与指定 System.Xml.Linq.XName 匹配的 System.Xml.Linq.XElement,或者为 null。 public static XElement Element(this XContainer xContainer, XName xName, bool t) { XElement info; if (xContainer == null) { info = null; } else { info = xContainer.Element(xName); } if (t && info == null) { info = new XElement(xName); } return info; } /// /// 按文档顺序返回此元素或文档的子元素集合。 /// /// XContainer。 /// 是否返回非空默认值。 /// System.Xml.Linq.XElement 的按文档顺序包含此System.Xml.Linq.XContainer 的子元素,或者非空默认值。 public static IEnumerable Elements(this XContainer xContainer, bool t) { IEnumerable info; if (xContainer == null) { info = null; } else { info = xContainer.Elements(); } if (t && info == null) { info = new List(); } return info; } /// /// 按文档顺序返回此元素或文档的经过筛选的子元素集合。集合中只包括具有匹配 System.Xml.Linq.XName 的元素。 /// /// XContainer。 /// 要匹配的 System.Xml.Linq.XName。 /// 是否返回非空默认值。 /// System.Xml.Linq.XElement 的按文档顺序包含具有匹配System.Xml.Linq.XName 的 System.Xml.Linq.XContainer 的子级,或者非空默认值。 public static IEnumerable Elements(this XContainer xContainer, XName xName, bool t) { IEnumerable info; if (xContainer == null) { info = null; } else { info = xContainer.Elements(xName); } if (t && info == null) { info = new List(); } return info; } /// /// 删除html标签。 /// /// 输入的字符串。 /// 没有html标签的字符串。 public static string RemoveHTMLTags(this string html) { return Regex .Replace( Regex.Replace( Regex.Replace( (html ?? string.Empty).Replace(" ", " ").Replace("\r\n", " ").Replace("\n", " ") .Replace("\r", " ").Replace("\t", " "), "<\\/?[^>]+>", "\r\n"), "(\r\n)+", "\r\n"), "(\\s)+", " ").Trim(); } /// /// 字符串转换为文件名。 /// /// 字符串。 /// 文件名。 public static string ToFileName(this string s) { return Regex.Replace(s.ToString(string.Empty), @"[\\/:*?<>|]", "_").Replace("\t", " ").Replace("\r\n", " ") .Replace("\"", " "); } /// /// 获取星期一的日期。 /// /// 日期。 /// 星期一的日期。 public static DateTime? GetMonday(this DateTime dateTime) { return dateTime.AddDays(-1 * (int)dateTime.AddDays(-1).DayOfWeek).ToString("yyyy-MM-dd").GetDateTime(); } /// /// 获取默认非空字符串。 /// /// 首选默认非空字符串。 /// 依次非空字符串可选项。 /// 默认非空字符串。若无可选项则返回string.Empty。 public static string DefaultStringIfEmpty(this string s, params string[] args) { if (string.IsNullOrEmpty(s)) { foreach (string i in args) { if (!string.IsNullOrEmpty(i) && !string.IsNullOrEmpty(i.Trim())) { return i; } } } return s ?? string.Empty; } /// /// 对 URL 字符串进行编码。 /// /// 要编码的文本。 /// 匹配要编码的文本。 /// 指定编码方案的 System.Text.Encoding 对象。 /// 一个已编码的字符串。 public static string ToUrlEncodeString(this string s, Regex regex = default, Encoding encoding = null) { if (encoding == null) { encoding = Encoding.UTF8; } if (regex == null) { return HttpUtility.UrlEncode(s, encoding); } List l = new List(); foreach (char i in s) { string t = i.ToString(); l.Add(regex.IsMatch(t) ? HttpUtility.UrlEncode(t, encoding) : t); } return string.Join(string.Empty, l); } /// /// 对 URL 字符串进行编码。 /// /// 要编码的文本。 /// 匹配要编码的文本。 /// 指定编码方案的 System.Text.Encoding 对象。 /// 一个已编码的字符串。 public static string ToUrlEncodeString(this string s, string regex, Encoding encoding = null) { return ToUrlEncodeString(s, new Regex(regex), encoding); } /// /// 将日期转换为UNIX时间戳字符串 /// /// /// public static string ToUnixTimeStamp(this DateTime date) { DateTime startTime = TimeZoneInfo.ConvertTimeToUtc(new DateTime(1970, 1, 1)); string timeStamp = date.Subtract(startTime).Ticks.ToString(); return timeStamp.Substring(0, timeStamp.Length - 7); } public static string Join(this IEnumerable source, string separator) { return string.Join(separator, source); } /// /// 判断当前字符串是否是移动电话号码 /// /// /// public static bool IsMobile(this string mobile) { return MobileRegex.IsMatch(mobile); } /// /// 判断当前字符串是否为邮箱 /// /// /// public static bool IsEmail(this string email) { return EmailRegex.IsMatch(email); } /// /// 把对象类型转换为指定类型 /// /// /// /// public static object CastTo(this object value, Type conversionType) { if (value == null) { return null; } if (conversionType.IsNullableType()) { conversionType = conversionType.GetUnNullableType(); } if (conversionType.IsEnum) { return Enum.Parse(conversionType, value.ToString()); } if (conversionType == typeof(Guid)) { return Guid.Parse(value.ToString()); } return Convert.ChangeType(value, conversionType); } /// /// 把对象类型转化为指定类型 /// /// 动态类型 /// 要转化的源对象 /// 转化后的指定类型的对象,转化失败引发异常。 public static T CastTo(this object value) { if (value == null && default(T) == null) { return default; } if (value.GetType() == typeof(T)) { return (T)value; } object result = CastTo(value, typeof(T)); return (T)result; } /// /// 把对象类型转化为指定类型,转化失败时返回指定的默认值 /// /// 动态类型 /// 要转化的源对象 /// 转化失败返回的指定默认值 /// 转化后的指定类型对象,转化失败时返回指定的默认值 public static T CastTo(this object value, T defaultValue) { try { return CastTo(value); } catch (Exception) { return defaultValue; } } /// /// 将对象保存为csv /// /// /// /// 文件名称 /// 分隔符,默认逗号 public static void SaveToCsv(this IEnumerable source, string csvFullName, string separator = ",") { if (source == null) { throw new ArgumentNullException(nameof(source)); } if (string.IsNullOrEmpty(separator)) { separator = ","; } string csv = string.Join(separator, source); using (StreamWriter sw = new StreamWriter(csvFullName, false)) { sw.Write(csv); sw.Close(); } } public static bool IsImplement(this Type entityType, Type interfaceType) { return /*entityType.IsClass && !entityType.IsAbstract &&*/ entityType.GetTypeInfo().GetInterfaces().Any(t => t.GetTypeInfo().IsGenericType && t.GetGenericTypeDefinition() == interfaceType); } /// /// 将对象转为DataTable /// /// /// /// public static DataTable ToDataTable(this IEnumerable source) { DataTable dtReturn = new DataTable(); if (source == null) { return dtReturn; } // column names PropertyInfo[] oProps = null; foreach (T rec in source) { // Use reflection to get property names, to create table, Only first time, others will follow if (oProps == null) { oProps = rec.GetType().GetProperties(); foreach (PropertyInfo pi in oProps) { Type colType = pi.PropertyType; if (colType.IsNullableType()) { colType = colType.GetGenericArguments()[0]; } if (colType == typeof(bool)) { colType = typeof(int); } dtReturn.Columns.Add(new DataColumn(pi.Name, colType)); } } DataRow dr = dtReturn.NewRow(); foreach (PropertyInfo pi in oProps) { object value = pi.GetValue(rec, null) ?? DBNull.Value; if (value is bool) { dr[pi.Name] = (bool)value ? 1 : 0; } else { dr[pi.Name] = value; } } dtReturn.Rows.Add(dr); } return dtReturn; } } /// /// 结果。 /// /// 结果返回值类型。 public class Result { /// /// 标记。 /// public Flag Flag { get; set; } /// /// 返回值。 /// public T Return { get; set; } /// /// 消息。 /// public string Message { get; set; } /// /// 异常。 /// public Exception Exception { get; set; } /// /// 时间。 /// public DateTime DateTime { get; set; } /// /// 整型数据。 /// public int Int { get; set; } /// /// 浮点数据。 /// public decimal Decimal { get; set; } /// /// 布尔数据。 /// public bool Bool { get; set; } /// /// 对象。 /// public object Object { get; set; } } /// /// 标记。 /// public enum Flag { /// /// 默认。 /// Default, /// /// 真。 /// True, /// /// 假。 /// False } }