System.ComponentModel.DataAnnotations.Schema.ColumnAttribute
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);
}
}