我将ManyConsole用作控制台应用程序的命令行命令和选项解析器。所有的命令都被定义为一个命令类,它派生自ConsoleCommand
,然后实现一个特定的任务。ParkPayConsoleCommand
我定义了一个从该类派生的中间基类:
abstract class ParkPayConsoleCommand: ConsoleCommand
{
protected readonly ParkPayDbContext DbContext = new ParkPayDbContext();
}
然后我所有的命令类都从我的基类派生,并享受内置的DbContext
,例如:
class ReadStartsCommand : ParkPayConsoleCommand
{
public ReadStartsCommand()
{
_commandTrace = new TraceSource(CommandName, SourceLevels.All);
IsCommand("read-starts", "Processes imported vehicle entry movements to create new VehiclePresence records with start date-times based on those movements");
HasRequiredOption("b|batchId:", "The Id of the VehicleMovementBatch used to create new vehicle presences.", b => _batchIdOption = b);
}
public override int Run(string[] remainingArguments)
{
// Do the business of the command.
return (int)ExitCodes.Success;
}
}
正如您在上面看到的,每个命令类都命名和描述自身,并在其构造函数中定义其命令行选项,这是一个 ManyConsole 约定。通常,当我运行上述命令时ReadStartsCommand
,它只会写入控制台正在运行的命令,而不是我传递的选项。
然而,当我ParkPayConsoleCommand.DbContext
公开而不是受保护时,它会输出字符串
DbContext : ParkPay.Model.Context.ParkPayDbContext
运行命令的名称和描述末尾的控制台。为什么它DbContext
没有在任何地方定义为命令选项本身时这样做。这可能看起来微不足道,但本质上我问的是一个非常重要的“元问题”,那就是:ManyConsole 是否将其命令类的所有公共属性隐式解释为命令选项,即使它们没有明确声明为命令选项?