AwesomeSauce.AggRootProcessor.processType C# (CSharp) Méthode

processType() public méthode

public processType ( IContext cxt, PropertyInfo property, Type type ) : void
cxt IContext
property System.Reflection.PropertyInfo
type System.Type
Résultat void
        void processType(IContext cxt, PropertyInfo property, Type type)
        {
            if (!isEntity(type)) return;

            var childContext = cxt.GetChildContext(type, property, () => 1);
            foreach (var prop in type.GetProperties())
            {
                processType(childContext, prop, prop.PropertyType);
            }
        }