示例#1
0
        public bool IsPartOfCompositeAggregations(PropertyInfo propertyInfo)
        {
            if (propertyInfo == null)
            {
                return(false);
            }
            if (CompositeAggregations == null)
            {
                return(false);
            }

            return
                (CompositeAggregations.Any(item => item.PropertyType.FullName.Equals(propertyInfo.PropertyType.FullName)));
        }