我已经使用hangfire.mysql.core和hangfire core实现了hangfire。它创建默认模式而不使用 hangfire.tablename
. 我想添加前缀来添加hangfire的默认模式,
在下面的代码表中,前缀无效。
GlobalConfiguration.Configuration.UseStorage(
new MySqlStorage(
connectionString,
new MySqlStorageOptions
{
TransactionIsolationLevel = IsolationLevel.ReadCommitted,
QueuePollInterval = TimeSpan.FromSeconds(15),
JobExpirationCheckInterval = TimeSpan.FromHours(1),
CountersAggregateInterval = TimeSpan.FromMinutes(5),
PrepareSchemaIfNecessary = true,
DashboardJobListLimit = 50000,
TransactionTimeout = TimeSpan.FromMinutes(1),
TablesPrefix = "Hangfire"
}));
我还安装了以下软件包仍然没有解决。
Hangfire.MySqlStorage.TablesPrefixedWithSchema
hangfire.mysql.core是否支持表前缀?
暂无答案!
目前还没有任何答案,快来回答吧!