Bumped package version to 1.1.2. Improved documentation, simplified the column attribute and added the ability to mark columns as unique. Indexes now don't need a name to be specified, one will be generated if none is provided, and a few other wording changes and renaming was done.

This commit is contained in:
MattMo 2023-06-13 15:08:40 -07:00
parent f38a08b1cf
commit b323dc14eb
7 changed files with 70 additions and 56 deletions

View File

@ -10,7 +10,7 @@ namespace MontoyaTech.MySqlPlus.Example
[MySqlRowIndex("year", "year")]
public class Car
{
[MySqlColumn(Id = true, Name = "id", PrimaryKey = true, AutoIncrement = true)]
[MySqlColumn(Name = "id", PrimaryKey = true, AutoIncrement = true)]
public ulong Id = 0;
[MySqlColumn("make")]

View File

@ -17,27 +17,27 @@ namespace MontoyaTech.MySqlPlus
public class MySqlColumn : Attribute
{
/// <summary>
/// Whether or not this column is the row id.
/// </summary>
public bool Id = false;
/// <summary>
/// The name of the column, if null, the field name will be used instead.
/// The name of the column, if null, the field name will be used instead. Default is null.
/// </summary>
public string Name = null;
/// <summary>
/// The MySql Data type of the column, if null, the field type will be used instead.
/// The MySql Data type of the column, if null, the field type will be used instead. Default is null.
/// </summary>
public string Type = null;
/// <summary>
/// Whether or not this column is a primary key.
/// Whether or not this column is a primary key. Default is false.
/// </summary>
public bool PrimaryKey = false;
/// <summary>
/// Whether or not this column auto increments.
/// Whether or not this column is unique. Default is false.
/// </summary>
public bool Unique = false;
/// <summary>
/// Whether or not this column auto increments. Default is false.
/// </summary>
public bool AutoIncrement = false;

View File

@ -22,11 +22,11 @@ namespace MontoyaTech.MySqlPlus
/// <param name="row"></param>
/// <param name="field"></param>
/// <param name="idColumn"></param>
public static bool GetMySqlId<T>(this T row, out FieldInfo field, out MySqlColumn idColumn)
public static bool GetMySqlPrimaryKey<T>(this T row, out FieldInfo field, out MySqlColumn idColumn)
{
var type = typeof(T);
return GetMySqlId(type, out field, out idColumn);
return GetMySqlPrimaryKey(type, out field, out idColumn);
}
/// <summary>
@ -37,7 +37,7 @@ namespace MontoyaTech.MySqlPlus
/// <param name="field"></param>
/// <param name="idColumn"></param>
/// <returns></returns>
public static bool GetMySqlId(this Type type, out FieldInfo field, out MySqlColumn idColumn)
public static bool GetMySqlPrimaryKey(this Type type, out FieldInfo field, out MySqlColumn idColumn)
{
field = null;
@ -52,7 +52,7 @@ namespace MontoyaTech.MySqlPlus
{
var column = fields[i].GetCustomAttribute<MySqlColumn>();
if (column != null && column.Id)
if (column != null && column.PrimaryKey)
{
field = fields[i];
idColumn = column;
@ -246,6 +246,10 @@ namespace MontoyaTech.MySqlPlus
/// <returns></returns>
public static bool IsNullable<T>(this MySqlColumn column, FieldInfo field, T row)
{
//If the column is the primary key, it cannot be null.
if (column.PrimaryKey)
return false;
var fieldType = field.FieldType;
var defaultValue = field.GetValue(row);

View File

@ -51,8 +51,8 @@ namespace MontoyaTech.MySqlPlus
if (column == null)
continue;
//Skip id columns because they are auto incremented.
if (column.Id)
//Skip any columns that are auto incremented.
if (column.AutoIncrement)
continue;
if (seperate)
@ -99,8 +99,8 @@ namespace MontoyaTech.MySqlPlus
//Write the set values section
builder.Append("SET ");
FieldInfo idField = null;
MySqlColumn idColumn = null;
FieldInfo primaryField = null;
MySqlColumn primaryColumn = null;
bool seperate = false;
for (int i = 0; i < fields.Length; i++)
{
@ -109,14 +109,17 @@ namespace MontoyaTech.MySqlPlus
if (column == null)
continue;
//Skip id columns because they are auto incremented.
if (column.Id)
//If this column is the primary key, grab it.
if (column.PrimaryKey)
{
idField = fields[i];
idColumn = column;
continue;
primaryField = fields[i];
primaryColumn = column;
}
//Skip any columns that are auto incremented.
if (column.AutoIncrement)
continue;
if (seperate)
builder.Append(", ");
@ -127,14 +130,14 @@ namespace MontoyaTech.MySqlPlus
seperate = true;
}
//Make sure we have an id column.
if (idField == null)
throw new Exception("Given row does not contain an id column");
//Make sure we have a primary key.
if (primaryField == null)
throw new Exception("Given row does not contain primary key.");
//Write the where clause
builder.Append($" WHERE `{(string.IsNullOrWhiteSpace(idColumn.Name) ? idField.Name : idColumn.Name)}`=@id LIMIT 1");
builder.Append($" WHERE `{(string.IsNullOrWhiteSpace(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1");
command.Parameters.AddWithValue("@id", idField.GetValue(row));
command.Parameters.AddWithValue("@id", primaryField.GetValue(row));
//Set the command text.
command.CommandText = builder.ToString();
@ -156,11 +159,11 @@ namespace MontoyaTech.MySqlPlus
var rowAttribute = rowType.GetCustomAttribute<MySqlRow>();
//Get the id field
if (!rowType.GetMySqlId(out FieldInfo idField, out MySqlColumn idColumn))
throw new Exception("Failed to find the id column on the given row.");
if (!rowType.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
throw new Exception("Failed to find the primary key for the given row.");
//Set the command text.
command.CommandText = $"SELECT * FROM `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? rowType.Name : rowAttribute.Name)}` WHERE `{(string.IsNullOrWhiteSpace(idColumn.Name) ? idField.Name : idColumn.Name)}`=@id LIMIT 1";
command.CommandText = $"SELECT * FROM `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? rowType.Name : rowAttribute.Name)}` WHERE `{(string.IsNullOrWhiteSpace(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1";
//Add the id parameter.
command.Parameters.AddWithValue("@id", id);
@ -204,15 +207,15 @@ namespace MontoyaTech.MySqlPlus
//Write the delete from section
builder.Append($"DELETE FROM `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? rowType.Name : rowAttribute.Name)}` ");
//Get the id the column and field info
if (!row.GetMySqlId(out FieldInfo idField, out MySqlColumn idColumn))
throw new Exception("Failed to find Id column on row.");
//Get the primary field and column
if (!row.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
throw new Exception("Failed to find primary key for given row.");
//Write the where clause
builder.Append($"WHERE `{(string.IsNullOrWhiteSpace(idColumn.Name) ? idField.Name : idColumn.Name)}`=@id LIMIT 1");
builder.Append($"WHERE `{(string.IsNullOrWhiteSpace(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1");
//Add the id parameter.
command.Parameters.AddWithValue("@id", idField.GetValue(row));
command.Parameters.AddWithValue("@id", primaryField.GetValue(row));
//Set the command text.
command.CommandText = builder.ToString();
@ -238,12 +241,12 @@ namespace MontoyaTech.MySqlPlus
//Write the delete from section
builder.Append($"DELETE FROM `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? rowType.Name : rowAttribute.Name)}` ");
//Get the id the column and field info
if (!rowType.GetMySqlId(out FieldInfo idField, out MySqlColumn idColumn))
throw new Exception("Failed to find Id column on row.");
//Get the primary key field and column.
if (!rowType.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
throw new Exception("Failed to find primary key for the given row.");
//Write the where clause
builder.Append($"WHERE `{(string.IsNullOrWhiteSpace(idColumn.Name) ? idField.Name : idColumn.Name)}`=@id LIMIT 1");
builder.Append($"WHERE `{(string.IsNullOrWhiteSpace(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1");
//Add the id parameter.
command.Parameters.AddWithValue("@id", id);
@ -315,8 +318,10 @@ namespace MontoyaTech.MySqlPlus
if (separate)
builder.Append(", ");
var columnName = string.IsNullOrWhiteSpace(column.Name) ? fields[i].Name : column.Name;
//Write the column name
builder.Append($"{(string.IsNullOrWhiteSpace(column.Name) ? fields[i].Name : column.Name)} ");
builder.Append($"{columnName} ");
//Write the column data type
builder.Append($"{column.GetMySqlColumnType(fields[i])} ");
@ -352,8 +357,12 @@ namespace MontoyaTech.MySqlPlus
//Write the column auto increment information.
builder.Append($"{(column.AutoIncrement ? "AUTO_INCREMENT" : "")}");
//If the column is the primary key, output that constraint.
if (column.PrimaryKey)
builder.Append($", PRIMARY KEY ({(string.IsNullOrWhiteSpace(column.Name) ? fields[i].Name : column.Name)})");
builder.Append($", PRIMARY KEY ({columnName})");
//If the column is unique, output that constraint, but you can't be the primary key and be unique.
else if (column.Unique)
builder.Append($", UNIQUE ({columnName})");
separate = true;
}
@ -374,7 +383,10 @@ namespace MontoyaTech.MySqlPlus
if (separate)
builder.Append(", ");
builder.Append($"INDEX {index.Name} ({index.Columns.Aggregate((curr, next) => curr == null ? next : curr + ", " + next)})");
if (string.IsNullOrWhiteSpace(index.Name))
builder.Append($"INDEX IDX_{index.Columns.Aggregate((curr, next) => curr == null ? next : curr + "_" + next)} ({index.Columns.Aggregate((curr, next) => curr == null ? next : curr + ", " + next)})");
else
builder.Append($"INDEX {index.Name} ({index.Columns.Aggregate((curr, next) => curr == null ? next : curr + ", " + next)})");
separate = true;
}

View File

@ -7,7 +7,7 @@
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
<Title>MontoyaTech.MySqlPlus</Title>
<Version>1.1.1</Version>
<Version>1.1.2</Version>
<Company>MontoyaTech</Company>
<Description>A simple C# library to help work with MySql.</Description>
<Copyright>MontoyaTech 2023</Copyright>

View File

@ -14,14 +14,14 @@ namespace MontoyaTech.MySqlPlus
public class MySqlRowIndex : Attribute
{
/// <summary>
/// The name of this index.
/// The name of this index. Default is null. If null, one will be created automatically.
/// </summary>
public string Name;
public string Name = null;
/// <summary>
/// The name of the columns that belong to this index.
/// </summary>
public string[] Columns;
public string[] Columns = null;
/// <summary>
/// Creates a new default MySqlRowIndex.
@ -29,18 +29,15 @@ namespace MontoyaTech.MySqlPlus
public MySqlRowIndex() { }
/// <summary>
/// Creates a new default MySqlRowIndex with a name and column names.
/// Creates a new default MySqlRowIndex with column names apart of the index.
/// </summary>
/// <param name="name"></param>
/// <param name="columns"></param>
/// <exception cref="ArgumentException"></exception>
public MySqlRowIndex(string name, params string[] columns)
public MySqlRowIndex(params string[] columns)
{
if (columns == null || columns.Length == 0)
throw new ArgumentException("Columns must not be null or 0.");
this.Name = name;
this.Columns = columns;
}
}

View File

@ -69,12 +69,13 @@ namespace MontoyaTech.MySqlPlus
this.Connection.ExecuteNonQuery(command);
if (row.GetMySqlId(out FieldInfo idField, out MySqlColumn idColumn))
//Update the primary key value on the row if we can find it.
if (row.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
{
if (Type.GetTypeCode(idField.FieldType) == TypeCode.UInt64)
idField.SetValue(row, (ulong)command.LastInsertedId);
if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64)
primaryField.SetValue(row, (ulong)command.LastInsertedId);
else
idField.SetValue(row, command.LastInsertedId);
primaryField.SetValue(row, command.LastInsertedId);
}
return (ulong)command.LastInsertedId;