在C#的List集合操作中,有时候需要根据条件判断List集合中是否存在符合条件的元素对象,此时就可以使用List集合的扩展方法Exists方法来实现,Exists方法的签名为bool Exists(Predicate<T> match),match代表条件方法表达式,一般使用Lambda表达式为多,通过Exists判断是否存在符合条件的元素对象比使用for循环或者foreach遍历查找更简便直接. (1)对List<int>集合对象list1进行查找判断是否有元素对象的值为7 L
--批量对符合条件的表记录进行更新 --aa代表查询出的符合条件数据的别名 --aa后的表示需要符合的条件 --loop后开始写更新操作 begin for aa in (select a.objectid from geographic_info a, geographic_info_bf b where a.objectid = b.objectid and b.pgeocode = 'xxx') loop update geographic_info set qxcode = 'xxx',