Subsonic 3.0 在 SQL 2005 中带有时间戳字段
我的表中有一个时间戳字段,当我创建对象的新实例、设置一些字段、不设置时间戳字段并使用 .Save() 时,我收到一条错误消息,指出我无法将明确的值设置为INSERT 期间的时间戳字段。
我怎样才能让 SubSonic 不保存该特定字段中的任何内容?
谢谢
I have a timestamp field in a table and when i create a new instance of my object, set some fields, do not set the timestamp field and use the .Save(), i get an error saying that i cannot set an exlicite value to a timestamp field during an INSERT.
How can i have SubSonic not save anything in that perticular field?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定我是否完全理解这个问题,但默认的 SubSonic 模板设置为将某些日期/时间字段视为特殊情况,即 CreatedOn 和 ModifiedOn。您可以查看 T4 模板以查找对这些字段的引用并修改它们的行为。
这是否适用于您的情况,或者您的时间戳字段是否完全命名为其他名称?
I'm not sure I perfectly understand the question, but the default SubSonic templates are set up to treat certain date/time fields as special cases, those being CreatedOn and ModifiedOn. You could look through your T4 template for references to those fields and modify their behavior.
Does this even apply to your situation, or are your timestamp fields named something else completely?
这就是您正在寻找的
http:// /mvcframeworkblog.blogspot.com/2009/10/subsonic-how-to-add-new-datatype.html
this is what you are looking for
http://mvcframeworkblog.blogspot.com/2009/10/subsonic-how-to-add-new-datatype.html