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

FindOne() public static méthode

Searches and returns the a row. If more than one is found, throws ActiveRecordException
public static FindOne ( Type targetType ) : object
targetType System.Type The target type
Résultat object
		public static object FindOne(Type targetType, params ICriterion[] criterias)
		{
			return ActiveRecordBase.FindOne(targetType, criterias);
		}

Same methods

ActiveRecordMediator::FindOne ( Type targetType, DetachedCriteria criteria ) : object