接下来放一个用SqlBulkCopy插入数据的例子,运用了泛型委托和反射.就当好好的运用这些知识. public static void AddEntityByBulk(IList entitys,string TableName) where TEntity : class { using (context = new MyDbContext()) { //接下来就是批量插入 using (var bulkCopy = new SqlBulkCopy((SqlConnection) conte…
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace 泛型委托 { //委托中使用泛型 public delegate int DeleCompare<T>(T t1,T t2); class Program { static void Main(string[] args) { , ,, , ,…
Predicate 泛型委托 表示定义一组条件并确定指定对象是否符合这些条件的方法.此委托由 Array 和 List 类的几种方法使用,用于在集合中搜索元素.看看下面它的定义: // Summary: // Represents the method that defines a set of criteria and determines whether // the specified object meets those criteria. ////…