Subsonic 3 t4 模板编译失败

发布于 2024-09-30 11:31:24 字数 259 浏览 2 评论 0原文

我从网站下载了 Subsonic 3。

我在 webconfig 中添加了一个连接字符串部分,并按照网站上的建议更新了设置文件。

当它构建代码时,Context.cs 出现以下错误: alt text

它构建的所有其他类看起来都不错。正确的表名在那里等。我确信这是一个新手类型的问题..所以我希望对于亚音速大师来说这是一个简单的问题。

戴夫

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:
alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

孤檠 2024-10-07 11:31:24

那个“DPR”。为构造函数添加前缀是错误的。

查看声明 DatabaseName 变量的行,它是我的副本中的第 26 行。看起来像这样吗?

const string DatabaseName = "DPR.RecordUpdateTaskCollector";

(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?

const string DatabaseName = "DPR.RecordUpdateTaskCollector";

(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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文