Castle.ActiveRecord.Framework.Internal.ActiveRecordModel.GetModels C# (CSharp) Méthode

GetModels() public static méthode

Gets an array containing the Framework.Internal.ActiveRecordModel for every registered ActiveRecord class.
public static GetModels ( ) : Castle.ActiveRecord.Framework.Internal.ActiveRecordModel[]
Résultat Castle.ActiveRecord.Framework.Internal.ActiveRecordModel[]
		public static ActiveRecordModel[] GetModels()
		{
			ActiveRecordModel[] modelArray = new ActiveRecordModel[type2Model.Values.Count];

			type2Model.Values.CopyTo(modelArray, 0);

			return modelArray;
		}