Shaolinq.Persistence.SqlDataType.GetSqlName C# (CSharp) Method

GetSqlName() public method

Gets the SQL type name for the given property.
public GetSqlName ( PropertyDescriptor propertyDescriptor ) : string
propertyDescriptor PropertyDescriptor The property whose return type is to be serialized
return string
		public string GetSqlName(PropertyDescriptor propertyDescriptor)
		{
			return GetSqlName(propertyDescriptor, null);
		}

Same methods

SqlDataType::GetSqlName ( PropertyDescriptor propertyDescriptor, ConstraintDefaultsConfiguration constraintDefaults ) : string