System.ComponentModel.DataAnnotations.Schema.ColumnAttribute
Represents the database column that a property is mapped to.
namespace System.ComponentModel.DataAnnotations.Schema
{
public class ColumnAttribute : Attribute
{
public string Name { get; }
public int Order { get; set; }
public string TypeName { get; set; }
public ColumnAttribute();
public ColumnAttribute(string name);
}
}