vote up 4 vote down star

I'm extending Fluent NHibernate for better use with F# (namely, quotation support), and want some feedback on de-fluenting the API. F# requires that return values be used, unless they are type unit. So this ends up terminating every line with "|> ignore":

type ProductMap() as m = inherit QClassMap<Product>() do
    let x = Unchecked.defaultof<Product> 
    m.Id <@ x.Id @> |> ignore
    m.Map <@ x.Name @> |> ignore
    m.Map <@ x.Price @> |> ignore
    (m.HasManyToMany <@ seq x.StoresStockedIn @>)
        .Cascade.All()
        .Inverse()
        .WithTableName("StoreProduct") |> ignore

My first reaction was to add more methods to the base class so they return unit. For instance, "IdI" and "MapI":

...
m.IdI <@ x.Id @>
m.MapI <@ x.Name @> 
m.MapI <@ x.Price @> 
...

But that requires specific overloads here and there, and long chains are still going to need a |> Ignore. I also considered extending object with a Done property:

(m.Id <@ x.Id @>).Done
(m.Map <@ x.Name @>).Done
(m.Map <@ x.Price @>).Done
(m.HasManyToMany <@ seq x.StoresStockedIn @>)
    .Cascade.All()
    .Inverse()
    .WithTableName("StoreProduct").Done

What do you think?

flag

1 Answer

vote up 3 vote down check

IMHO a better approach would be to start from scratch thinking in F# (e.g function piping, currying, combinators) instead of wrapping fluent nhibernate, but using what fluent nhibernate has used to generate the mappings. That is, building a "parallel fluent nhibernate" for exclusive use of F#.

I've recently posted about a similar issue with Windsor's fluent interface in F#. My conclusion is that many DSLs / fluent interfaces built for C# / VB.NET will break in F# so I think it's best to build specific fluent interfaces that suit the F# way.

link|flag
Yea... but that's a lot of work ;). I'll play with idea, thanks! – MichaelGG Apr 7 at 21:59
I know... but would you use NUnitEx (code.google.com/p/nunitex) in F#, or would you try and build something like FsUnit (code.google.com/p/fsunit) ? – Mauricio Scheffer Apr 8 at 0:38
DSLs / fluent interfaces are just not very portable across languages... for example I'd never expect to be able to run a Boo DSL in C# even though it runs in the same platform... so it's the same thing with F# – Mauricio Scheffer Apr 8 at 0:40
Well, perhaps in some cases it's more pronounced. But FNhibernate works fine except for the |> ignore, and I don't see how that'd go away. – MichaelGG Apr 8 at 2:11
Agreed, it works. But it loses some of its fluency... about |> ignore, you could avoid it by inverting the order of each mapping, i.e. (pseudocode) <@ x.Name @> |> map (/pseudocode) – Mauricio Scheffer Apr 8 at 3:17
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.