I wonder if there is any sql query builder out there meeting these conditions:
- Available as WPF control so that it can be integrated in my WPF app
- At least support of MS SQL Server and Oracle
- Visual representation and drag/drop support (tables, columns)
- SQL expression as a result property (no fancy "user-friendly" meta concept)
- Possibility to edit the SQL expression manually (with changes to the visual representation)
- No need to build up a metadata model before
I already spend some time on the web with the following results
- ActiveQueryBuilder is functionally perfect but does not fit 1. (lacks WPF support) [http://www.activequerybuilder.com/index.html?from=about&edition=net]
- KorzhEasyQueryNET does not fit 5. (SQL is not written back to visual) and 6. (metadata model needed) [http://devtools.korzh.com]
- Query Objects is not a component but a standalone tool [http://www.query-objects.com/]
So, is anybody out who knows of an alternative?
Regards