show/hide this revision's text 4 fixed title again

Querying by runtime type in DB4O

show/hide this revision's text 3 fixed tags

Pass a Querying by runtime type to a functionin DB4O

How do you pass a class type into a function in C-SharpC#?

As I am getting into db4o and C# I wrote the following function after reading the tutorials:

    public static void PrintAllPilots("CLASS HERE", string pathToDb)
    {
        IObjectContainer db = Db4oFactory.OpenFile(pathToDb);
        IObjectSet result = db.QueryByExample(typeof("CLASS HERE"));
        db.Close();
        ListResult(result);
    }
show/hide this revision's text 2 Fixed the misleading title

Cast Pass a Type into type to a function

show/hide this revision's text 1