Castle.ActiveRecord.ActiveRecordMediator.DeleteAll C# (CSharp) Méthode

DeleteAll() public static méthode

Deletes all targetType objects, based on the primary keys supplied on pkValues.
public static DeleteAll ( Type targetType, IEnumerable pkValues ) : int
targetType System.Type The target ActiveRecord type
pkValues IEnumerable A list of primary keys
Résultat int
		public static int DeleteAll(Type targetType, IEnumerable pkValues)
		{
			return ActiveRecordBase.DeleteAll(targetType, pkValues);
		}

Same methods

ActiveRecordMediator::DeleteAll ( Type type ) : void
ActiveRecordMediator::DeleteAll ( Type type, string where ) : void