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