I just got a book from Amazon about db4o and I entered the first example as follows:
ObjectContainer db = Db4o.OpenFile("customer.yap");
db.Set (cust);
But my .NET 2 system would not compile listing errors in the ObjectContainer class (not defined). I assume we need to import something. I assume also the customer.yap database is automatically created by the OpenFile method when the db does not exist.
Do you have any idea what import is needed in .Net?
The book has a lot of material (Definitive Guide to db4o), but I need to get the environment working. I did look at the tutorial but it seems to assume the ObjectContainer will work as above.