Add scoped typed multi-table select builder

This commit is contained in:
root
2026-02-27 09:29:23 +01:00
parent 8210fbfdb5
commit 8555e1958c
8 changed files with 1706 additions and 4 deletions

View File

@@ -33,4 +33,17 @@ namespace DynamORM.Tests.Helpers
[Column("Region_Code")]
public string RegionCode { get; set; }
}
[Table(Name = "UserDepartments", Owner = "dbo")]
public class TypedJoinUserDepartment
{
[Column("Department_Id", true)]
public long DepartmentId { get; set; }
[Column("Region_Id")]
public long RegionId { get; set; }
[Column("Department_Name")]
public string DepartmentName { get; set; }
}
}