Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Ruby 的 Sequel 的新手,我很好奇什么时候应该使用Sequel::Dataset,什么时候最好使用Sequel::Model.
Sequel::Dataset
Sequel::Model
如果您需要一流的模型,则应该使用该模型。这提供了验证、状态转换和事件之前和之后的回调等功能,以及存储业务逻辑的集中位置。
数据集通常用于更底层的操作。