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")]
|
2023-01-31 16:58:19 -08:00
|
|
|
|
[MySqlRowIndex("make_model", "model", "year")]
|
|
|
|
|
[MySqlRowIndex("year", "year")]
|
2023-01-27 16:18:25 -08:00
|
|
|
|
public class Car
|
2023-01-27 11:34:31 -08:00
|
|
|
|
{
|
2023-01-31 13:03:17 -08:00
|
|
|
|
[MySqlColumn(Id = true, Name = "id", PrimaryKey = true, AutoIncrement = true, Nullable = false)]
|
2023-01-27 11:34:31 -08:00
|
|
|
|
public ulong Id = 0;
|
|
|
|
|
|
|
|
|
|
[MySqlColumn("make")]
|
|
|
|
|
public string Make = null;
|
|
|
|
|
|
2023-01-31 13:03:17 -08:00
|
|
|
|
[MySqlColumn("model", Nullable = false, Type = "VARCHAR(255)")]
|
|
|
|
|
public string Model = "Unknown";
|
2023-01-27 11:34:31 -08:00
|
|
|
|
|
2023-01-31 13:03:17 -08:00
|
|
|
|
[MySqlColumn("year", Nullable = false)]
|
2023-01-27 16:18:25 -08:00
|
|
|
|
public uint Year = 0;
|
|
|
|
|
|
2023-01-31 13:03:17 -08:00
|
|
|
|
[MySqlColumn("dateCreated", typeof(DateTimeToUnixConverter), DefaultValue = 0, Nullable = false)]
|
2023-01-30 20:13:51 -08:00
|
|
|
|
public DateTime DateCreated = DateTime.UtcNow;
|
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("");
|
|
|
|
|
|
2023-01-31 13:03:17 -08:00
|
|
|
|
session.CreateTable<Car>();
|
|
|
|
|
|
2023-01-30 20:13:51 -08:00
|
|
|
|
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
|
|
|
|
|
2023-01-31 13:03:17 -08:00
|
|
|
|
session.DeleteTable<Car>();
|
|
|
|
|
|
2023-01-27 16:18:25 -08:00
|
|
|
|
Console.WriteLine("Done.");
|
|
|
|
|
Console.ReadLine();
|
2023-01-27 11:34:31 -08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|