关于 SQLite ActiveRecord 模板的问题

发布于 2024-08-02 15:31:59 字数 819 浏览 3 评论 0原文

我尝试在 SubSonic.Examples.ActiveRecord 项目中使用 SQLite,如下所示:

  1. 添加 System.Data.SQLite 的引用
  2. 将 SQLite.ttinclude 和 Settings.ttinclude 从 \T4 Templates\TemplateProviders\ 复制到 Models_Generate\
  3. 更改 <#@包含文件=“SQLite.ttinclude”#>在 SQLite.ttinclude 和 Settings.ttinclude
  4. 文件中将设置:Namespace、ConnectionStringName、DatabaseName 更改为“Blog”。

重新生成代码时遇到两个错误: 第一个是因为在SQLite.ttinclude第#80行缺少一个“break”,

case "long":
case "integer":
    sysType= "long";
    break;  // missing a break
case "guid":

添加一个“break”后,代码文件“Context.cs”可以成功生成,但ActiveRecord.cs无法生成,有一个警告:

< strong>在模板中发现多个模板指令。除第一个之外的所有内容都将被忽略。应在一个模板指令中指定模板指令的多个参数。 D:\LP\Study\SubSonic 3 Final\Examples\SubSonic.Examples.ActiveRecord\Models_Generate\Settings.ttinclude 1 4

I try to using the SQLite in SubSonic.Examples.ActiveRecord project so:

  1. Add a reference for System.Data.SQLite
  2. Copy the SQLite.ttinclude and Settings.ttinclude from \T4 Templates\TemplateProviders\ to the Models_Generated\
  3. Change the <#@ include file="SQLite.ttinclude" #> in the SQLite.ttinclude and Settings.ttinclude
  4. Change the settings: Namespace, ConnectionStringName, DatabaseName to "Blog" in the Settings.ttinclude file.

I meet two errors when regenerate the code:
first one is because of missing a "break" at SQLite.ttinclude line #80

case "long":
case "integer":
    sysType= "long";
    break;  // missing a break
case "guid":

After add a "break" the code file "Context.cs" can generate successfully, but the ActiveRecord.cs can not generate, there is a Warning:

Multiple template directives were found in the template. All but the first one will be ignored. Multiple parameters to the template directive should be specified within one template directive. D:\LP\Study\SubSonic 3 Final\Examples\SubSonic.Examples.ActiveRecord\Models_Generated\Settings.ttinclude 1 4

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

掩于岁月 2024-08-09 15:31:59

我从 SubSonic 的 github 下载最新版本,一切正常!

新版本新的T4文件:Structs.tt

I download the latest version from SubSonic's github and everything is OK!

The new version a new T4 file: Structs.tt

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