Castle.ActiveRecord.ActiveRecordBase.FindAll C# (CSharp) Метод

FindAll() защищенный статический Метод

Returns all instances found for the specified type.
protected static FindAll ( Type targetType ) : Array
targetType System.Type The target type.
Результат System.Array
		protected internal static Array FindAll(Type targetType)
		{
			return FindAll(targetType, (Order[])null);
		}

Same methods

ActiveRecordBase::FindAll ( Type targetType, DetachedCriteria detachedCriteria ) : Array
ActiveRecordBase::FindAll ( Type targetType, NHibernate.Criterion.Order orders ) : Array

Usage Example

Пример #1
0
 public static T[] FindAll(ICriterion[] criterias, Order[] orders)
 {
     return((T[])ActiveRecordBase.FindAll(typeof(T), orders, criterias));
 }
All Usage Examples Of Castle.ActiveRecord.ActiveRecordBase::FindAll