如果我连接到嵌入式 Firebird 数据库并创建一个远程事件,我会在构造函数上得到 System.NotSupportedException: Specified method is not supported..。
_fbRemoteEvent = new FbRemoteEvent(_fbConnection); //_fbConnection is valid and Opened
查看调用堆栈中的源代码,它会导致 FesDatabase.cs
RemoteEvent IDatabase.CreateEvent()
{
throw new NotSupportedException();
}
我将嵌入式版本用于自动化测试目的......我可以做些什么来在测试上下文中从嵌入式数据库中获取事件吗?