Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#
Article

Karmencita: an object query language for .NET

Rate me:
Please Sign up or sign in to vote.
4.42/5 (16 votes)
23 Mar 2006 68.2K   208   27   18
Learn more about Karmencita, an object query language for .NET.

Introduction

Karmencita is an object query language for .NET. Its purpose is to allow easy querying from in-memory structured data.

Features:

  • an easy, SQL-like language.
  • common, slim API used for querying data.
  • supports any IEnumerable data source, DataTables and XmlDataDocuments.
  • extensible implementation.
  • common API, but still gets results depending on the data source. (For instance, when querying XmlDataDocuments, we get back a XmlElement[]. But if we query a DataTable, we get back a DataRow[]).
  • supports IComparable for custom type implementation.

The basic idea is to have an easy SQL-like language in which we can write queries against any data source.

Using the code

Let's see some code samples:

  • query the list of running processes:
    C#
    // get an array of running processes
    Process[] proc = Process.GetProceses();
    
    // initialize Karmencita with
    // the type of object to be queries
    ObjectQuery<Process> oq = 
            new ObjectQuery<Process>();
    
    // write the query
    string query = "BasePriority > 3 and Responding" + 
                   " = true and MainWindowTitle Like C%";
    
    //run the query
    Process[] processes = (Process[]) oq.Select(proc, query);
  • query a Stack<> of Customer objects:
    C#
    // initialize the data source
    // (in this case a Stack of Customers)
    Stack<Customer> proc = .....
    
    // initialize Karmencita with
    // the type of object to be queries
    ObjectQuery<Customer> oq = 
              new ObjectQuery<Customer>();
    
    // write the query
    string query = "Name = [Thor the Mighty]" + 
                   " and IsMale = true and BirthDate" + 
                   " < [1,1,1910]";
    
    //run the query
    Customer[] processes = (Customer[]) oq.Select(proc, query);
  • query a DataTable:
    C#
    // load the DataTable from the database
    DataTable dt = .....
    
    // initialize Karmencita with
    // the type of object to be queries
    ObjectQuery<DataTable> oq = 
             new ObjectQuery<DataTable>();
    
    // write the query
    string query = "ProductName = Fish and" + 
                   " UnitPrice > 200 and IsInStock = true";
    
    //run the query
    DataRow[] processes = (DataRow[]) oq.Select(proc, query);
  • query an XMLDataDocument:
    C#
    // load the XML document
    DataTable dt = .....
    
    // initialize Karmencita with the type
    // of object to be queries
    ObjectQuery<XMLDataDocument> oq = 
        new ObjectQuery<XMLDataDocument>();
    
    // write the query
    string query = "ProductName = Fish and" + 
                   " UnitPrice > 200 and IsInStock = true";
    
    //run the query
    XmlElement[] processes = (XmlElement[]) oq.Select(proc, query);

Conclusion

As you can see, Karmencita is a generic query engine which can be used to query multiple data sources. Just throw a data source and a query to it, and have the result. No need to muck around with multiple query syntaxes (DataTable .Select, XQuery etc.). One generic query language to rule them all. :)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralNeed Full Example Pin
peperkraf13-Jul-09 18:16
peperkraf13-Jul-09 18:16 
GeneralNPath Pin
Roger Alsing6-Jul-06 19:57
Roger Alsing6-Jul-06 19:57 
GeneralI actualy tried to use this and ... Pin
Pop Catalin24-Mar-06 5:57
Pop Catalin24-Mar-06 5:57 
and even benchmarked it

What I found out is that is horibly unoptimised. Execution times compared to the delegate method are between 50 and 200 times slower on arrays with 1.000 to 100.000 elements and with 3 to 5 comparison expressions in the query.

Also it is highly inflexible, and doesn't allow only but the simples't of expresions.
- No expression grouping either.
- No conversions or casts built in.
- No metod cals on objects just fiels or properies can be present in the query.
- Very hard (imposible?) to query using data from outside the queried collection. Ex: "StoredDate < - DateTime.Now" - doesn't work;
- No knowlege or evaluation of framework types.
- No matematical or complex boolean expressions.

So realy what's the point of this ? there are so many other ways to do it even if not the same ways for all data types.

Sorry Karmencita won't make life easier for me but allot harder if I shoud use it.
GeneralRe: I actualy tried to use this and ... Pin
dzCepheus24-Mar-06 11:15
dzCepheus24-Mar-06 11:15 
GeneralRe: I actualy tried to use this and ... Pin
dzCepheus24-Mar-06 11:18
dzCepheus24-Mar-06 11:18 
GeneralRe: I actualy tried to use this and ... Pin
Adrian_Moore28-Mar-06 2:43
Adrian_Moore28-Mar-06 2:43 
GeneralRe: I actualy tried to use this and ... Pin
Pop Catalin28-Mar-06 4:54
Pop Catalin28-Mar-06 4:54 
GeneralStrong Typed Alternative Pin
Pop Catalin24-Mar-06 2:56
Pop Catalin24-Mar-06 2:56 
GeneralRe: Strong Typed Alternative Pin
[sharp]24-Mar-06 3:42
[sharp]24-Mar-06 3:42 
GeneralRe: Strong Typed Alternative Pin
Pop Catalin24-Mar-06 4:33
Pop Catalin24-Mar-06 4:33 
GeneralDon't spend too much time on this. Pin
dzCepheus23-Mar-06 12:28
dzCepheus23-Mar-06 12:28 
GeneralRe: Don't spend too much time on this. Pin
[sharp]23-Mar-06 22:52
[sharp]23-Mar-06 22:52 
GeneralRe: Don't spend too much time on this. Pin
dzCepheus23-Mar-06 23:03
dzCepheus23-Mar-06 23:03 
GeneralRe: Don't spend too much time on this. Pin
StSz24-Mar-06 3:20
StSz24-Mar-06 3:20 
GeneralRe: Don't spend too much time on this. Pin
[sharp]24-Mar-06 3:51
[sharp]24-Mar-06 3:51 
GeneralRe: Don't spend too much time on this. Pin
dzCepheus24-Mar-06 11:11
dzCepheus24-Mar-06 11:11 
GeneralVery nice... Pin
Marc Brooks23-Mar-06 11:28
Marc Brooks23-Mar-06 11:28 
GeneralRe: Very nice... Pin
[sharp]24-Mar-06 3:43
[sharp]24-Mar-06 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.