Azavea.Open.DAO.ClassMapping.ToString C# (CSharp) Method

ToString() public method

Returns the class mapping type name and table name.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return "ClassMapping(type " +
                (ClassType == null ? TypeName : ClassType.FullName) +
                " to table " + Table + ")";
        }