123456789101112131415161718192021222324252627282930 |
- 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; }
- }
- }
|