Habanero.Smooth.ClassAutoMapperExtensions.MapClass C# (CSharp) Method

MapClass() public static method

Maps the Class of type to a ClassDef. Note_ this will not create the reverse relationships on the Related Class if they are required. If you require reverse relationships to be set up then please use the AllClassesAutoMapper
public static MapClass ( this type ) : IClassDef
type this
return IClassDef
        public static IClassDef MapClass(this Type type)
        {
            return type == null ? null : type.ToTypeWrapper().MapClass();
        }
        /// <summary>
ClassAutoMapperExtensions