Renders this DbModelType as basic DDL base on the contents of Value.
| C# | Visual Basic | Visual C++ |
public string ToDDLValue( bool nullable )
Public Function ToDDLValue ( _ nullable As Boolean _ ) As String
public: String^ ToDDLValue( bool nullable )
- nullable (Boolean)
- A boolean value indicating the nullability of the column.
An SQL string representing the Value acording to the database type.
If a column is "not null" and the Value is null, in the furure this method will attampt to return a default value
rather than throwing an exception etc.