Exemplo n.º 1
0
        protected override Node CreateSimpleProperty(Node container, string propertyName, int columnOrdinal)
        {
            PropertyInfo property = GetProperty(((PocoNode)container).UnderlyingType, propertyName);

            if (property == null)
            {
                return(null);
            }

            return(PocoNode.Simple(columnOrdinal, property));
        }
Exemplo n.º 2
0
 protected override Node CreateParameterNode(int columnOrdinal, ParameterInfo paramInfo)
 {
     return(PocoNode.Simple(columnOrdinal, paramInfo));
 }