using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace PCC.Pocs.Pocs;

internal static class SqliteGeneratorPoc
{
    public static void RunPoc()
    {
        //var sql = SqliteDapperGenerator.GenerateCreateTable<Example>();

    }

    [Table("Examples")]
    class Example
    {
        [Key]
        [MaxLength(64)]
        public required string Key { get; set; }

        [MaxLength(512)]
        public required string? Value { get; set; }
    }

}