Table of Contents

ColumnSchema

  • 包含数据库字段类型的原始列
  • 主要用于组成TableSchema,用来支持CreateTable

1. 接口

2. ColumnSchema类型

class ColumnSchema(string name, string sqlType = "INT") : IColumn {
	string SqlType { get; }
	string Default { get; set; }
	bool NotNull { get; set; }
	ColumnType ColumnType { get; set; }
}

3. 其他相关功能