2

我正在尝试重新创建设置项目,如http://subsonicproject.com/docs/Setting_up_SubSonic_3.0的视频中所示

我正在使用visual c# 2008 express edition并按照所有步骤操作,但出现了问题。

settings.ttinclude 如下:

const string Namespace = "WSC";
const string ConnectionStringName = "WSC";

//This is the name of your database and is used in naming
//the repository. By default we set it to the connection string name
const string DatabaseName = "WSC";

//this is a list of tables you don't want generated
string[] ExcludeTables = new string[]{
"sysdiagrams",
"BuildVersion",
};

.. 我正在添加 subsonic.core.dll 引用并使用以下设置创建 app.config:

我还将在 t4 模板目录中找到的 ActveDirectory 文件夹复制到解决方案中。.cs 文件应该在此处生成,但它们不是。

任何人都可以帮忙吗?

问候,

阿德里安

4

2 回答 2

2

并不是说 SubSonic 本身不能与 Express 一起使用……而是 Express 不支持 T4 模板,SubSonic 使用这些模板来生成您的类。

于 2009-07-29T19:55:12.750 回答
1

显然亚音速 3.0 不适用于 Visual Studio 2008 的快速版本。我用标准版本的 VS 2008 进行了尝试,一切正常。

任何人都可以确认我的说法。

保持良好的工作

阿德里安

于 2009-07-15T06:25:29.603 回答