Start on QueryBuilder

Created:

- MySql Type Name Map
- Added String Extensions
This commit is contained in:
2021-08-01 08:49:47 +10:00
parent 6cf59c41cc
commit 72f1ccefca
6 changed files with 288 additions and 11 deletions

View File

@ -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; }
}
}