SqliteGeneratorPoc.cs 627 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace PCC.Pocs.Pocs;
  9. internal static class SqliteGeneratorPoc
  10. {
  11. public static void RunPoc()
  12. {
  13. //var sql = SqliteDapperGenerator.GenerateCreateTable<Example>();
  14. }
  15. [Table("Examples")]
  16. class Example
  17. {
  18. [Key]
  19. [MaxLength(64)]
  20. public required string Key { get; set; }
  21. [MaxLength(512)]
  22. public required string? Value { get; set; }
  23. }
  24. }