ColumnConfiguration.TypeName Property

[This page is specific to the Entity Framework version 6. The latest version is available as the 'Entity Framework' NuGet package. For more information about Entity Framework, see msdn.com/data/ef.]

Gets or sets the name of the database provider specific data type.

Namespace:  Microsoft.Data.Entity.Design.CodeGeneration
Assembly:  Microsoft.Data.Entity.Design (in Microsoft.Data.Entity.Design.dll)

Syntax

'Declaration
Public Property TypeName As String 
    Get 
    Set
'Usage
Dim instance As ColumnConfiguration 
Dim value As String 

value = instance.TypeName

instance.TypeName = value
public string TypeName { get; set; }
public:
property String^ TypeName {
    String^ get ();
    void set (String^ value);
}
member TypeName : string with get, set
function get TypeName () : String 
function set TypeName (value : String)

Property Value

Type: System.String
The name of the database provider specific data type.

See Also

Reference

ColumnConfiguration Class

Microsoft.Data.Entity.Design.CodeGeneration Namespace