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

FindAllByProperty() public static méthode

Finds records based on a property value - automatically converts null values to IS NULL style queries.
public static FindAllByProperty ( Type targetType, String orderByColumn, String property, object value ) : Array
targetType System.Type The target type
orderByColumn String The column name to be ordered ASC
property String A property name (not a column name)
value object The value to be equals to
Résultat System.Array
		public static Array FindAllByProperty(Type targetType, String orderByColumn, String property, object value)
		{
			return ActiveRecordBase.FindAllByProperty(targetType, orderByColumn, property, value);
		}

Same methods

ActiveRecordMediator::FindAllByProperty ( Type targetType, String property, object value ) : Array