EBNF to fluent interface - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T02:05:31Zhttp://stackoverflow.com/feeds/question/246080http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246080/ebnf-to-fluent-interface2EBNF to fluent interfaceEric Smith2008-10-29T07:56:22Z2008-10-29T08:31:08Z
<p>I have recently had the need to write a fluent interface for C# that will essentially mirror SQL. Yes, I am aware of LINQ to SQL, but I'm interesting in getting "closer to the metal"--having something that essentially provides nothing more than an Intellisensified SQL shim <em>within</em> C#.</p>
<p>E.g.,</p>
<pre><code>var fq = new FluentQuery();
Expression<Action> =
() => fq.SELECT.DISTINCT(Foo.ID).FROM(Foo).WHERE(Foo.Age > 22);
</code></pre>
<p>Now, I was thinking that this concept could be generalised--that is, how about a general EBNF to fluent interface generator? Does anyone know if such a beast exists?</p>
http://stackoverflow.com/questions/246080/ebnf-to-fluent-interface/246124#2461242Answer by Omer van Kloeten for EBNF to fluent interfaceOmer van Kloeten2008-10-29T08:31:08Z2008-10-29T08:31:08Z<p>I like it, but you have to make sure to return types like HasFromAndSelect or something like that so you don't end up with <code>fq.SELECT(Foo.ID).SELECT(Foo.Age).WHERE(Foo.Age > 22)</code> or <code>fq.WHERE(Foo.Age > 22).SELECT(Foo.ID)</code>, etc.</p>
<p>There's much more thought that needs to go into this, including the fact that the CAPS LOCK MODE is hurting my eyes :)</p>