Added extension functions for getting a row by a string id, and deleting a row by a string id.

This commit is contained in:
MattMo 2023-06-13 15:10:51 -07:00
parent b323dc14eb
commit 926fff38fd

View File

@ -169,6 +169,31 @@ namespace MontoyaTech.MySqlPlus
command.Parameters.AddWithValue("@id", id);
}
/// <summary>
/// Setups this MySqlCommand to get a row from the db by a string id.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="command"></param>
/// <param name="id"></param>
public static void Get<T>(this MySqlCommand command, string id)
{
//Get the type of T
var rowType = typeof(T);
//Get the row information.
var rowAttribute = rowType.GetCustomAttribute<MySqlRow>();
//Get the id field
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(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1";
//Add the id parameter.
command.Parameters.AddWithValue("@id", id);
}
/// <summary>
/// Setups this MySqlCommand to get all the rows of a given type from the db.
/// </summary>
@ -255,6 +280,40 @@ namespace MontoyaTech.MySqlPlus
command.CommandText = builder.ToString();
}
/// <summary>
/// Setups this MySqlCommand to delete a row from the db by it's string id.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="command"></param>
/// <param name="id"></param>
public static void Delete<T>(this MySqlCommand command, string id)
{
//Get the type of T
var rowType = typeof(T);
//Get the row information.
var rowAttribute = rowType.GetCustomAttribute<MySqlRow>();
//Start building the query.
var builder = new StringBuilder();
//Write the delete from section
builder.Append($"DELETE FROM `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? rowType.Name : rowAttribute.Name)}` ");
//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(primaryColumn.Name) ? primaryField.Name : primaryColumn.Name)}`=@id LIMIT 1");
//Add the id parameter.
command.Parameters.AddWithValue("@id", id);
//Set the command text.
command.CommandText = builder.ToString();
}
/// <summary>
/// Setups this MySqlCommand to delete all rows of a given type from the db.
/// </summary>