How to convert SQL query to LINQ query?

methods or products to query objects?

  • What are some "end user" products (preferably open source) or methodologies that allow complex queries of objects? I want to allow both programmers and non-programmers to be able to access the data. The data is currently organized in such a way that it requires an expert to query the data. Only some of the data is relational and other parts are not. What I envision is spending time and turning this data into objects in Ruby, Python, C# or perhaps Java. My hope is I could spend weeks to months doing this and end up with something users could deal with. I know this sounds a lot like data warehousing, but I don't think it follows the patterns I have seen this used for. Are there any open source programs or methodologies I could read up on? I want to allow query by forms or perhaps a query language similar to SQL. LINQ for example is not a good option as it is too complex for end users to master. Thanks in advance!

  • Answer:

santogold at Ask.Metafilter.Com Visit the source

Was this solution helpful to you?

Other answers

Have you looked at http://en.wikipedia.org/wiki/Apache_Solr? It's a search engine in a box. Although maybe that is too high level for what you want.

sbutler

I'm really not sure I get your situation, but are you looking for something like an http://en.wikipedia.org/wiki/XML_database you can transform the data into and hit with http://www.w3schools.com/xpath/xpath_examples.asp or http://www.w3schools.com/xquery/default.asp? Or maybe you are a candidate for a more popular NoSQL solution like, for example, http://www.mongodb.org. Its query language, like its data, is just Javascript, so it's pretty natural for most web developers to work with. Maybe also look at http://htsql.org/doc/showcase.html as a model for allowing end users to do semi-arbitrary queries of the relational data. Insofar as it's RESTful, maybe you can figure out how to extend it to handle your other data using an XPath-like syntax.

Monsieur Caution

It depends what you mean by "and other parts are not." Are they unstructured documents you need to do full-text indexes on? Are they semi-structured documents that you want to extract some structured information from? Are they structured but just not in a relational form? I came in here to recommend HTSQL - I haven't used it, but we looked at it briefly for a similar situation. Especially if you have some dev time to dedicate, it could work well as part of a system for something like this. MeFi Mail me if you still have questions - I do very similar stuff for work :)

devilsbrigade

Sounds like you want to write some database views over your data, to hide the complexities.

orthogonality

Nothing is full text. Some of the data is relational some of it is not. It is all in an SQL database but there data that needs to be extracted trough programming because the authors chose not to use the relational model (I don't know why). I could extract this through programs and normalize the data into a different database but that would be a lot of work and I still would not have something end users could use easily. The reason coding converting this data to objects appeals to me is that I could make it fit into an object model quite elegantly. I have spent time with google and wikipedia and have not yet seen a way (for end users) to query objects easily and wonder if there is something that I am missing or if I am asking the wrong questions. Thanks

santogold

The reason coding converting this data to objects appeals to me is that I could make it fit into an object model quite elegantly. And the reason converting the data to objects won't work is because your data isn't well-normalized. You need to get your house in order first. First normalize your data. Then read up on http://en.wikipedia.org/wiki/Object-relational_mapping (ORM) which is precisely what you're talking about. In the Java world we use http://www.hibernate.org/ (NHibernate in the .NET world).

Civil_Disobedient

Haven't used them myself, but you may want to take a look at some of the open source OLAP tools out there, like http://en.wikipedia.org/wiki/Mondrian_OLAP_server or http://sourceforge.net/projects/cubulus/.

jenkinsEar

if you don't want to drive yourself insane, normalize your data, then the tools become a lot easier.

empath

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.