【发布时间】:2010-12-14 11:02:20
【问题描述】:
如果我连接到嵌入式 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();
}
我将嵌入式版本用于自动化测试目的...我可以做些什么来在测试上下文中从嵌入式数据库中获取事件?
【问题讨论】:
标签: c# events firebird firebird-embedded firebird-.net-provider