feat : RDB 기능 추가 (라이브러리, base 코드 구현)

This commit is contained in:
qornwh1
2026-03-01 16:58:38 +09:00
parent 563448a09a
commit 34394f2c96
14 changed files with 410 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using Dapper.Contrib.Extensions;
namespace MMOserver.RDB.Models;
// 테이블 entity
[Table("test")]
public class Test
{
[Key]
public int Id { get; set; }
public int TestA { get; set; }
public string? TestB { get; set; }
public double TestC { get; set; }
public string? Uuid { get; set; } // UNIQUE
}