Ejemplo n.º 1
0
#pragma warning disable 612, 618
        public Base Parse(IElementNavigator nav, Type type = null) => nav.ToPoco(type, buildPocoBuilderSettings(Settings));
Ejemplo n.º 2
0
 public T Parse <T>(IElementNavigator nav) where T : Base => (T)nav.ToPoco <T>(buildPocoBuilderSettings(Settings));
Ejemplo n.º 3
0
 public static T ToPoco <T>(this IElementNavigator navigator, PocoBuilderSettings settings = null) where T : Base =>
 (T)navigator.ToPoco(typeof(T), settings);