Subsonic 3 t4 模板编译失败
我从网站下载了 Subsonic 3。
我在 webconfig 中添加了一个连接字符串部分,并按照网站上的建议更新了设置文件。
当它构建代码时,Context.cs 出现以下错误:
它构建的所有其他类看起来都不错。正确的表名在那里等。我确信这是一个新手类型的问题..所以我希望对于亚音速大师来说这是一个简单的问题。
戴夫
I've downloaded Subsonic 3 from the website.
I added a connnectionstring section to my webconfig and updated the settings file as suggested on the website.
When It builds the code The Context.cs errors with the following:
All the other classes that it's built look ok. The correct table names are there etc. I'm sure this is a noob type question.. so I'm hoping an easy one for a subsonic guru out there.
Dave
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那个“DPR”。为构造函数添加前缀是错误的。
查看声明 DatabaseName 变量的行,它是我的副本中的第 26 行。看起来像这样吗?
(SS3 模板将“DB”附加到您提供的任何名称上)
如果是这样,只需删除“DPR.”。如果您需要将其作为名称空间,则正确的位置是声明“名称空间”变量的几行。
That "DPR." prefixing your constructors is wrong.
Look at the line that declares the DatabaseName variable, it's line 26 in my copy. Does it look like this?
(the SS3 templates append "DB" onto whatever name you provide)
If so, just remove the "DPR.". If you need that as the namespace, the correct spot is a few lines up where the "Namespace" variable is declared.