我有一个由 Java 应用程序生成的 db4o 数据库,我正在尝试使用 C# 应用程序读取它。
但是,在运行以下代码行时:
IObjectContainer db = Db4oEmbedded.OpenFile(@"..\..\..\Databases\people.db4o");
我收到以下错误:
无法将“Db4objects.Db4o.Reflect.Generic.GenericObject”类型的对象转换为“Db4objects.Db4o.Ext.Db4oDatabase”类型。
有任何想法吗?我知道数据库中有包含 personId 字段(以及其他字段)的人员对象。我使用的是 db4o 版本 8。我不确定使用什么版本来生成数据库。
整个程序是:
using System;
using System.Collections.Generic;
using System.Linq;
using Db4objects.Db4o;
using Db4objects.Db4o.Config;
using MyCompany.Domain;
namespace MyCompany.Anonymizer
{
internal class Program
{
// Private methods.
private static IEmbeddedConfiguration ConfigureAlias()
{
IEmbeddedConfiguration configuration = Db4oEmbedded.NewConfiguration();
configuration.Common.AddAlias(new TypeAlias("com.theircompany.Person", "MyCompany.Domain.Person, MyCompany.Domain"));
configuration.Common.Add(new JavaSupport());
return configuration;
}
private static void Main(string[] args)
{
IObjectContainer db = Db4oEmbedded.OpenFile(@"..\..\..\Databases\people.db4o");
try
{
IList<Person> result = db.Query<Person>();
for (int i = 0; i < result.Count; i++)
{
Person person = result[i];
Console.WriteLine(string.Format("Person ID: {0}", person.personId));
}
}
finally
{
db.Close();
}
}
}
}