| @index |
@item.ColumnName |
@item.ColumnTypeName |
@(string.IsNullOrWhiteSpace(item.Length)? " ":item.Length) |
@(string.IsNullOrWhiteSpace(item.Scale)? " ":item.Scale) |
@(string.IsNullOrWhiteSpace(item.IsPK)?" ": item.IsPK) |
@if (!Model.DBType.StartsWith("Oracle"))
{
@(string.IsNullOrWhiteSpace(item.IsIdentity) ?" ": item.IsIdentity) |
}
@(string.IsNullOrWhiteSpace(item.CanNull) ?" ": item.CanNull) |
@(string.IsNullOrWhiteSpace(item.DefaultVal) ?" ": item.DefaultVal) |
@(string.IsNullOrWhiteSpace(item.Comment) ?" ": item.Comment) |
index++;
}