Override the generic ToString method to warn if the ToString is called directly on the Field object
This is a warning agains a fairly common mistake where a developer thinks they are accessing the field's
value property by default, when in fact they are not. I've seen this type of problem cause errors when setting
parameters in SQL statements
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public override string ToString()
Public Overrides Function ToString As String
Return Value
Type:
StringThe base objects string representation (still not the value)
See Also