///------------------------------------------------------------------------------------------------- /// <summary> /// Gets the entities in this collection. /// </summary> /// <param name="metaClass"> /// (Optional) the meta class. /// </param> /// <param name="skip"> /// (Optional) the skip. /// </param> /// <returns> /// An enumerator that allows foreach to be used to process the entities in this collection. /// </returns> ///------------------------------------------------------------------------------------------------- public virtual IEnumerable <IModelEntity> GetEntities(ISchemaEntity metaClass = null, int skip = 0) { CheckInitialized(); return(L1Cache.GetEntities(metaClass, skip)); }