<!-- 以下为必读项,不仔细阅读会导致你的 Issue 被关闭 1. 该分类下只能提交 Feature,如果要询问使用方法等,请前往讨论区:https://github.com/dotnetcore/FreeSql/discussions 2. 请尽量详细的描述清楚你的需求 --> #### Feature 特性 对数组做导航 #### 简要描述原因 pg 之类的数据库支持数组类型 但是没有对数组做导航支持 #### 使用场景 避免无必要的中间表 ```cs class User { public int[] RoleIds { get; set; } public Role[] Roles { get; set; } } class Role { public int Id { get; set; } } ```