Start on QueryBuilder
Created: - MySql Type Name Map - Added String Extensions
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using MySql.Data.MySqlClient;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
@ -6,6 +7,10 @@ namespace Articulate.Attributes
|
||||
{
|
||||
public class Column : Attribute
|
||||
{
|
||||
public string Type { get; set; }
|
||||
public MySqlDbType Type { get; set; }
|
||||
|
||||
public int Size { get; set; }
|
||||
|
||||
public bool Primary { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user