EBNF to fluent interface - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T02:05:31Z http://stackoverflow.com/feeds/question/246080 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246080/ebnf-to-fluent-interface 2 EBNF to fluent interface Eric Smith 2008-10-29T07:56:22Z 2008-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&lt;Action&gt; = () =&gt; fq.SELECT.DISTINCT(Foo.ID).FROM(Foo).WHERE(Foo.Age &gt; 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#246124 2 Answer by Omer van Kloeten for EBNF to fluent interface Omer van Kloeten 2008-10-29T08:31:08Z 2008-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 &gt; 22)</code> or <code>fq.WHERE(Foo.Age &gt; 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>