-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Description
In https://github.com/IoTSharp/SilkierQuartz/blob/master/src/Quartz.Plugins.RecentHistory/Impl/SqlServerExecutionHistoryStore.cs how do I configure the private readonly IDbConnection _dbConnection; field?
I configure Quartz in the following way:
services.AddSilkierQuartz(options =>
{
// ...
}
,
authenticationOptions =>
{
// ...
}
,
quartzOpts =>
{
// ...
quartzOpts["quartz.plugin.recentHistory.type"] = "Quartz.Plugins.RecentHistory.ExecutionHistoryPlugin, Quartz.Plugins.RecentHistory";
quartzOpts["quartz.plugin.recentHistory.storeType"] = "Quartz.Plugins.RecentHistory.Impl.SqlServerExecutionHistoryStore, Quartz.Plugins.RecentHistory";
quartzOpts["quartz.serializer.type"] = "json";
}
);
And I can't see a spot for injecting a connection string there.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels