私は持っています:
static class Db4o...
と:
class Db4oBase... // which uses Db4o class
私ができるところ:
class Customer : Db4oBase
{
public Customer(string name)
{
}
}
私ができるように:
Customer customer = new Customer("Acbel Polytech Philippines");
customer.store(); //something like that
私の開発のある時点まで、以下のコードが突然バグダウンしました。
class Db4o
{
.
.
.
public static IObjectSet Retrieve(object obj)
{
IObjectSet objectSet = null;
objectSet = container.Ext().QueryByExample(obj); // This part of the code
// throws a unsupported
// class hierarchy.
return objectSet;
}
}
QueryByExample命令は、サポートされていないクラス階層をスローします。誰かが私が何をすべきか知っていますか?