public void Delete<T>(List<T> EntityList) where T : class, new()
where T : struct | T必须是一个结构类型 where T : class where T : new() | T必须要有一个无参构造函数 where T : NameOfBaseClass | T必须继承名为NameOfBaseClass的类 where T : NameOfInterface | T必须实现名为NameOfInterface的接口
参考文档:http://msdn.microsoft.com/zh-cn/library/bb384067.aspx