Arash.Core.Manager.EntityTypeManager.GetCount C# (CSharp) 메소드

GetCount() 공개 메소드

public GetCount ( bool>.Func predicate = null ) : int
predicate bool>.Func
리턴 int
        public int GetCount(Func<EntityType, bool> predicate = null)
        {
            return predicate == null
                ? _repository.GetCount(p => true)
                : _repository.GetCount(predicate);
        }