摘要:
/// /// 操作表达式共通类,条件并且,或者操作等 /// public static class PredicateBuilder { /// /// Creates a predicate that evaluates to true. /// public static Expres... 阅读全文
摘要:
List转DataTable: public static DataTable ToDataTable<T>(IEnumerable<T> collection) { var props = typeof(T).GetProperties(); var dt = new DataTable(); f 阅读全文