生成 SubSonic DAL 时,生成的文件名中是否可以包含 .gen.cs?
使用 SubSonic 生成 DAL 文件时,我希望文件名称为 .gen.cs。主要原因是这些文件是部分类,我想将一些额外的实现细节添加到名为 .cs 的表的另一个源文件中。这在某种程度上是生成源文件的标准模式,我想知道 SubSonic 是否可以?我正在使用 SubSonic 2.2。
When generating my DAL files with SubSonic, I'd like the names of the files to be .gen.cs. The main reason for this is that the files are partial classes, and I would like to add some additional implementation details into another source file for the table called .cs. This is somewhat the standard pattern for generated source files , and I'm wondering if its possible with SubSonic? I'm using SubSonic 2.2.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以通过使用一组自定义模板来完成此操作,但 CS_ClassTemplate.aspx (或 VB_ClassTemplate.aspx)不控制类的文件名。
我认为这是不可能的。
作为替代方案,你可以做我做的事情。我有一个“生成”目录,例如 \database\generate,然后我将部分类放在 \database\custom 中。只要两个不同目录中的文件的名称空间匹配(例如 .database 或其他),那么它就可以正常工作。通过使用两个不同的目录,可以更轻松地找到自定义文件,而无需查看生成的文件。
I thought you might be able to do this by using a set of custom templates, but the CS_ClassTemplate.aspx (or VB_ClassTemplate.aspx) doesn't control the file name of the class.
I don't think this is possible.
As an alternative, you can do what I do. I have a "generated" directory, such as \database\generated and then I put my partial classes at \database\custom. As long as the namespaces of the files in the two different directories match (like .database or whatever), then it works fine. By using two different directories, it's easier to find your custom files without looking at the generated ones.