Example #1
0
        public static string ToColumnName(
            Type type, PropertyInfo info)
        {
            ISqlConvention c = Get(type.Name);

            return(c.ToColumnName(type, info));
        }
Example #2
0
        public static string ToTableName(Type type)
        {
            ISqlConvention c = Get(type.Name);

            return(c.ToTableName(type));
        }