释义 |
- 1
For example, if the shift number is 2, "H" is substituted by "J," "z" is substituted by "b," and so on. 例如,如果偏移数是 2,那么 “H” 被替换为 “J”,“z” 被替换为 “b”,以此类推。 - 2
If A has_many B through=> [X, Y, Z], then it becomes problematic to determine which association should be generated. 如果A has_many B与 [X, Y, Z]间接关联,那么很难去决定应该生成哪一个关联。 - 3
If a programmer wishes to address the A has_many B through=> [X, Y, Z] issue, they can specify the desired through association in their model class definition, and DrySQL will honour this. 如果开发者想解决A has_many B through=> [X, Y, Z]的问题,他们可以在模型类中定义想要的间接关联,并且DrySQL也希望你这么做。
|