2023-01-30 18:21:30 -08:00
|
|
|
|
using MySql.Data.MySqlClient;
|
|
|
|
|
using System;
|
2023-01-27 11:34:31 -08:00
|
|
|
|
|
|
|
|
|
namespace MontoyaTech.MySqlPlus.Example
|
|
|
|
|
{
|
|
|
|
|
public class Program
|
|
|
|
|
{
|
2023-01-27 16:18:25 -08:00
|
|
|
|
[MySqlRow("cars")]
|
|
|
|
|
public class Car
|
2023-01-27 11:34:31 -08:00
|
|
|
|
{
|
2023-01-27 16:18:25 -08:00
|
|
|
|
[MySqlColumn(Id = true, Name = "id")]
|
2023-01-27 11:34:31 -08:00
|
|
|
|
public ulong Id = 0;
|
|
|
|
|
|
|
|
|
|
[MySqlColumn("make")]
|
|
|
|
|
public string Make = null;
|
|
|
|
|
|
2023-01-27 16:18:25 -08:00
|
|
|
|
[MySqlColumn("model")]
|
2023-01-27 11:34:31 -08:00
|
|
|
|
public string Model = null;
|
|
|
|
|
|
2023-01-27 16:18:25 -08:00
|
|
|
|
[MySqlColumn("year")]
|
|
|
|
|
public uint Year = 0;
|
|
|
|
|
|
2023-01-30 20:13:51 -08:00
|
|
|
|
[MySqlColumn("dateCreated", typeof(DateTime2UnixConverter))]
|
|
|
|
|
public DateTime DateCreated = DateTime.UtcNow;
|
2023-01-27 11:34:31 -08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-30 20:13:51 -08:00
|
|
|
|
public class DateTime2UnixConverter : MySqlColumnConverter
|
2023-01-27 11:34:31 -08:00
|
|
|
|
{
|
2023-01-30 20:13:51 -08:00
|
|
|
|
public object ConvertFrom(object input)
|
|
|
|
|
{
|
|
|
|
|
if (input is ulong unix)
|
|
|
|
|
{
|
|
|
|
|
if (unix == 0)
|
|
|
|
|
return DateTime.MinValue;
|
|
|
|
|
|
|
|
|
|
return new DateTime(1970, 1, 1, 0, 0, 0, 0, DateTimeKind.Utc).AddSeconds(unix).ToUniversalTime();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new NotSupportedException("Unsupported input object to convert from unix.");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object ConvertTo(object input)
|
|
|
|
|
{
|
|
|
|
|
if (input is DateTime dateTime)
|
|
|
|
|
{
|
|
|
|
|
if (dateTime == DateTime.MinValue)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (dateTime == DateTime.MaxValue)
|
|
|
|
|
return ulong.MaxValue;
|
|
|
|
|
|
|
|
|
|
return (ulong)(dateTime.ToUniversalTime().Subtract(new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc))).TotalSeconds;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new NotSupportedException("Unsupported input object to convert to unix.");
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-01-27 11:34:31 -08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Main(string[] args)
|
|
|
|
|
{
|
2023-01-30 20:13:51 -08:00
|
|
|
|
var session = new MySqlSession("");
|
|
|
|
|
|
|
|
|
|
session.DeleteAll<Car>();
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
session.Insert(new Car() { Make = "Chevy", Model = "Camaro", Year = 2011 });
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
session.Insert(new Car() { Make = "GMC", Model = "Sierra", Year = 2000 });
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
var cars = session.GetAll<Car>();
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
foreach (var car in cars)
|
2023-01-30 20:13:51 -08:00
|
|
|
|
Console.WriteLine($"Make: {car.Make}, Model: {car.Model}, Year: {car.Year}, DateCreated: {car.DateCreated}");
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
cars[0].Make = "test";
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
session.Update(cars[0]);
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
2023-01-30 18:21:30 -08:00
|
|
|
|
foreach (var car in cars)
|
|
|
|
|
session.Delete(car);
|
2023-01-27 16:18:25 -08:00
|
|
|
|
|
|
|
|
|
Console.WriteLine("Done.");
|
|
|
|
|
Console.ReadLine();
|
2023-01-27 11:34:31 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|