petapoco T4模板创建错误的poco

时间:2012-11-17 05:04:45

标签: asp.net petapoco

我正在尝试在我的asp.net网站上使用Petapoco。 以下是我的Database.tt

// Settings
ConnectionStringName = "Orgsetup";          // Uses last connection string in config if not specified
Namespace = "namespace";
RepoName = "myrepoName";
SchemaName = "orgSchema";
GenerateOperations = true;
GeneratePocos = true;
GenerateCommon = true;
ClassPrefix = "";
ClassSuffix = "";
TrackModifiedColumns = true;

// Read schema
var tables = LoadTables();


// Generate output
if (tables.Count>0)
{
  #>
   <#@ include file="PetaPoco.Generator.ttinclude" #>
  <# } #>

和我的web.config

<connectionStrings>
<add name="Orgsetup"    connectionString="Datasource=localhost;Database=dp_usermgmt;uid=root;pwd=xxxxxx;" 
providerName="MySql.Data.MySqlClient"/>

运行这个Database.tt后,我得到一个庞大的POCO类,其中包含服务器中所有数据库中的所有表。

我正在为同一个应用程序使用同一服务器中的另外两个数据库。那两个完美地工作...... 这是一个Mysql Server 5.5。 这有什么不对

0 个答案:

没有答案