Most voted "dryioc" questions
Dryioc is a complete, fast and small Ioc container for . NET
Learn more…2 questions
Sort by count of
-
12
votes1
answer293
viewsWhat are the best practices with implementation of Dryioc, Fluentvalidation and Lazy?
I’m building an architecture based on the use of Lazy, DryIoc e o FluentValidation. I intend to do all validations with the object. When actually using the object I will instantiate it (Start). I…
-
3
votes2
answers150
viewsHow do you register all validation classes with Dryioc?
How can I log all my validation classes using Dryioc dynamically ? I’m trying this way down; using DryIoc; using FluentValidation; using System; using System.Linq; using System.Reflection; namespace…