I've very thrilled to announce the release today of
db4o 6.0, our brand new release.
Some lucky folks have seen at the Mono Meeting some bits of what's new in it.
Rodrigo and I've been mainly busy bringing some love to the public API, to make it look like a real .net/Mono library. And now that's what it really is.
using Db4objects.Db4o;
using Db4objects.Db4o.Query;
class Test
{
public static void Main()
{
using (IObjectContainer store = Db4oFactory.OpenFile("test.yap"))
{
IQuery q = store.Query();
q.Constrain(typeof(Person));
foreach (Person p in q.Execute())
{
Console.WriteLine (p);
}
}
}
}
Here is the sample extracted from
my blog post where I describe all the changes.
That's the release I've been the more excited with. You can feel that it's all packed with love. Go
give it a try.