Querying by type in DB4O - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T06:33:57Zhttp://stackoverflow.com/feeds/question/1027286http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1027286/querying-by-type-in-db4o2Querying by type in DB4OShaharyar2009-06-22T13:43:53Z2009-06-22T14:43:09Z
<p>How do you pass a class type into a function in C#?</p>
<p>As I am getting into db4o and C# I wrote the following function after reading the tutorials:</p>
<pre><code> public static void PrintAllPilots("CLASS HERE", string pathToDb)
{
IObjectContainer db = Db4oFactory.OpenFile(pathToDb);
IObjectSet result = db.QueryByExample(typeof("CLASS HERE"));
db.Close();
ListResult(result);
}
</code></pre>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o/1027302#10273021Answer by Timothy Carter for Querying by type in DB4OTimothy Carter2009-06-22T13:47:28Z2009-06-22T13:47:28Z<p>I think this is what you want:</p>
<pre><code>public static void PrintAllPilots(Type classType, string pathToDb)
{
IObjectContainer db = Db4oFactory.OpenFile(pathToDb);
IObjectSet result = db.QueryByExample(classType);
db.Close();
ListResult(result);
}
</code></pre>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o/1027305#102730510Answer by JaredPar for Querying by type in DB4OJaredPar2009-06-22T13:47:47Z2009-06-22T13:47:47Z<p>There are two ways. The first is to explicitly use the Type type.</p>
<pre><code>public static void PrintAllPilots(Type type, string pathToDb)
{
...
IObjectSet result = db.QueryByExample(type);
}
PrintAllPilots(typeof(SomeType),somePath);
</code></pre>
<p>The second is to use generics</p>
<pre><code>public static void PrintAllPilots<T>(string pathToDb)
{
...
IObjectSet result = db.QueryByExample(typeof(T));
}
PrintAllPilots<SomeType>(somePath);
</code></pre>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o/1027308#10273080Answer by Jon Limjap for Querying by type in DB4OJon Limjap2009-06-22T13:48:17Z2009-06-22T13:48:17Z<p>You can either do it manually by using <code>Type</code>:</p>
<pre><code>public static void PrintAllPilots(Type type, string pathToDb)
</code></pre>
<p>Or you could use generics to infer the type:</p>
<pre><code>public static void PrintAllPilots<T>(string pathToDb)
{
//...
var result = db.QueryByExample(typeof(T));
}
</code></pre>
http://stackoverflow.com/questions/1027286/querying-by-type-in-db4o/1027368#10273683Answer by Judah Himango for Querying by type in DB4OJudah Himango2009-06-22T14:00:00Z2009-06-22T14:43:09Z<p>The answers given by by Jon, Jared, and yshuditelu use query-by-example which is largely unused DB4o querying mechanism, and could potentially be deprecated in the future. </p>
<p>The preferred methods of querying on DB4O for .NET is native queries and LINQ.</p>
<pre><code>// Query for all Pilots using DB4O native query:
var result = db.Query<Pilot>();
</code></pre>
<p>Or alternatively using Linq-to-DB4O:</p>
<pre><code>// Query for all Pilots using LINQ
var result = from Pilot p in db
select p;
</code></pre>
<p>Both of these work provided you know the type (e.g. Pilot) at compile time. If you don't know the type at compile time, you can instead use a DB4O SODA query:</p>
<pre><code>var query = db.Query();
query.Constrain(someObj.GetType());
var results = query.Execute();
</code></pre>
<p><em>edit</em> Why use LINQ instead of SODA, Query-by-Example (QBE), or Native Query (NQ)? Because LINQ makes it very natural to do query expressions. For example, here's how you'd query for pilots named Michael:</p>
<pre><code>var michaelPilots = from Pilot p in db
where p.Name == "Michael"
select p;
</code></pre>
<p>And LINQ is composable, meaning you can do things like this:</p>
<pre><code>var first20MichaelPilots = michaelPilots.Take(20);
</code></pre>
<p>And you'll still get an efficient query executed in DB4O when you iterate over the results. Doing the same in SODA or QBE or NQ is ugly at best.</p>