我正在尝试在我的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。 这有什么不对