摘要:
/// /// 参数过滤 /// /// /// /// public static IEnumerable FilterParameters(IEnumerable parameters, string sql) { return p... 阅读全文
摘要:
/// /// 使用 System.Data.SQLite.dll 版本 1.0.102.0 官方例子名称:sqlite-netFx35-binary-PocketPC-ARM-2008-1.0.102.0 /// public class SqliteHelper { private readonly static string ... 阅读全文
摘要:
/// <summary> /// 创建实例 支持泛型的创建 /// </summary> /// <typeparam name="T">此处T形如 Common<User></typeparam> /// <returns></returns> public static T Create<T> 阅读全文
摘要:
public static IList ConvertToList(DataTable dt) where T : new() { List list = new List(); T model = default (T); foreach (DataRow dr in dt.Rows) ... 阅读全文
摘要:
/// /// 泛型LIst转泛型list /// /// /// /// /// public static List ListToList( List inList) where T : class where V : c... 阅读全文