MonoSoftware.MonoX.DAL.EntityClasses.NewsCategoryEntity.HasPopulatedMemberEntityCollections C# (CSharp) Method

HasPopulatedMemberEntityCollections() protected method

Determines whether the entity has populated member collections
protected HasPopulatedMemberEntityCollections ( ) : bool
return bool
        protected override bool HasPopulatedMemberEntityCollections()
        {
            bool toReturn = false;
            toReturn |=(this._newsCategoryChildrens != null);
            toReturn |=(this._newsCategoryInRoles != null);
            toReturn |=(this._newsCategoryLocalizations != null);
            toReturn |=(this._newsItems != null);
            toReturn |=(this._snRelationshipss != null);
            return toReturn ? true : base.HasPopulatedMemberEntityCollections();
        }