Table of Contents

Interface IColumnBase

Namespace
Microsoft.EntityFrameworkCore.Metadata
Assembly
Microsoft.EntityFrameworkCore.Relational.dll

Represents a column-like object in a table-like object.

public interface IColumnBase : IAnnotatable

Properties

IsNullable

Gets the value indicating whether the column can contain NULL.

bool IsNullable { get; }

Property Value

bool

Name

Gets the column name.

string Name { get; }

Property Value

string

PropertyMappings

Gets the property mappings.

IEnumerable<IColumnMappingBase> PropertyMappings { get; }

Property Value

IEnumerable<IColumnMappingBase>

StoreType

Gets the column type.

string StoreType { get; }

Property Value

string

Table

Gets the containing table-like object.

ITableBase Table { get; }

Property Value

ITableBase