Subsonic 3 相当于 Subsonic 2 SetColumnValue 和 GetColumnValue ActiveRecord
我正在将项目从 Subsonic 版本 2.2 转换为 3.0.0.3,但无法找到版本 2 具有的 SetColumnValue
和 GetColumnValue
的等效功能。
版本 3 有哪些与这些等效的内容?
I am converting a project from Subsonic Version 2.2 to 3.0.0.3 and have been unable to find the equivalent functionality of SetColumnValue
and GetColumnValue
that version 2 has.
What does version 3 have that is equivalent to these?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
目前没有等效的功能。 3.x 生成的类使用属性的支持字段,而不是具有底层数据存储。 现在,您需要使用反射。
There is currently no equivalent functionality. The 3.x generated classes use backing fields for properties instead having an underlying data store. Right now, you would need to use reflection.
我认为你需要这样的东西:
I think you need something like this: