v2.5
I am getting this error in a generated SS entity class.  Here is the code that causes the error:
Weld.ORM is the project/namespace name that's why it is using this here.  However Weld is also a string property in the entity so that's why there is a conflict.
    ''' <summary>Returns the EntityType Enum value For this entity.</summary>
    <Browsable(False), XmlIgnore> _
    Public Overrides ReadOnly Property LLBLGenProEntityTypeValue As Integer
        Get 
            Return CInt(Weld.ORM.EntityType.WeldImages_Spot_WeldsEntity)
        End Get
    End Property
    ''' <summary>The Weld property of the Entity WeldImages_Spot_Welds<br/><br/>
    ''' </summary>
    ''' <remarks>
    ''' Mapped on table field: "tblWeldImages_Spot_Welds"."Weld"<br/>
    ''' Table field type characteristics (type, precision, scale, length): NVarChar, 0, 0, 50<br/>
    ''' Table field behavior characteristics (is nullable, is PK, is identity): True, False, False
    ''' </remarks>
    Public Overridable Property [Weld]() As System.String
        Get
            Return CType(GetValue(CInt(WeldImages_Spot_WeldsFieldIndex.Weld), True), System.String)
        End Get
        Set
            SetValue(CInt(WeldImages_Spot_WeldsFieldIndex.Weld), value, True)
        End Set
    End Property