Tagged Questions
Refers to a practice of coding object-oriented APIs with the aim of improving readability of the interface, normally implemented using method chaining. The phrase was first coined by Eric Evans and Martin Fowler.
33
votes
5answers
20k views
101 tutorial for setting up nhibernate?
I am looking for a tutorial on setting up nhibernate.
There seems to be few out there, but most are either written in gibberish, or are on an extremely ancient release.
Any good resources, possibly ...
26
votes
13answers
1k views
Method chaining - why is it a good practice, or not?
Method chaining is the practice of object methods returning the object itself in order for the result to be called for another method. Like this:
...
24
votes
5answers
700 views
Fluent interface in Delphi
What are the pros and cons in using fluent interfaces in Delphi?
Fluent interfaces are supposed to increase the readability, but I'm a bit skeptical to have one long LOC that contains a lot of ...
21
votes
7answers
7k views
Tips for writing fluent interfaces in C# 3
I'm after some good tips for fluent interfaces in C#. I'm just learning about it myself but keen to hear what others think outside of the articles I am reading. In particular I'm after:
when is ...
18
votes
5answers
566 views
Fluent interfaces and inheritance in C#
I'll show a problem by example. There is a base class with fluent interface:
class FluentPerson
{
private string _FirstName = String.Empty;
private string _LastName = String.Empty;
...
17
votes
17answers
1k views
Design of an Alternative (Fluent?) Interface for Regular Expressions
I've just seen a huge regex for Java that made me think a little about maintainability of regular expressions in general. I believe that most people - except some badass perl mongers - would agree ...
16
votes
6answers
1k views
What's the point of DSLs / fluent interfaces
I was recently watching a webcast about how to create a fluent DSL and I have to admit, I don't understand the reasons why one would use such an approach (at least for the given example).
The webcast ...
16
votes
9answers
3k views
Fluent Interfaces - Method Chaining
Method chaining is the only way i know to build fluent interfaces.
Here's an example in C#:
John = new JohnBuilder().AddSmartCode("c#").WithfluentInterface("Please").ButHow("Dunno");
...
12
votes
3answers
185 views
Trying to understand how to create fluent interfaces, and when to use them
How would one create a fluent interface instead of a more tradition approach? Here is a traditional approach:
Interface:
interface IXmlDocumentFactory<T>
{
XmlDocument CreateXml() ...
12
votes
4answers
493 views
What's a fluent interface?
I recently came across this expression - but reading up on Wikipedia did not clarify it much for me - I still don't get it:
What's the point of it
How is it used in practice (i.e. how does it ...
10
votes
6answers
697 views
How to make Spring accept fluent (non-void) setters?
I have an API which I am turning into an internal DSL. As such, most methods in my PoJos return a reference to this so that I can chain methods together declaratively as such (syntactic sugar).
...
9
votes
3answers
1k views
Designing a fluent Javascript interface to abstract away the asynchronous nature of AJAX
How would I design an API to hide the asynchronous nature of AJAX and HTTP requests, or basically delay it to provide a fluent interface. To show an example from Twitter's new Anywhere API:
// get ...
9
votes
3answers
960 views
Is there a fluent assertion API for MSTest?
I've recently been exposed to the fluent interface in nUnit and I love it; however, I am using msTest.
Does anyone know if there is a fluent interface that is either testing framework agnostic or ...
9
votes
7answers
522 views
Is there any disadvantage to returning this instead of void?
Say instead of returning void a method you returned a reference to the class even if it didn't make any particular semantic sense. It seems to me like it would give you more options on how the ...
8
votes
3answers
216 views
PHP OOP: Chainable objects?
I have tried to find a good introduction on chainable OOP objects in PHP, but without any good result yet.
How can something like this be done?
$this->className->add('1','value');
...
8
votes
9answers
771 views
Fluent interfaces and leaky abstractions
What is a fluent interface? I can't find a good definition of this, but all I get are long code examples in a language I am not very familiar with (e.g. C++).
Also, what is a leaky abstraction?
...
7
votes
4answers
318 views
No type inference with generic extension method
I have the following method:
public static TEventInvocatorParameters Until
<TEventInvocatorParameters, TEventArgs>(this TEventInvocatorParameters p,
...
7
votes
5answers
261 views
C# Building Fluent API for method invocations
What do I have to do to say that InvokeMethod can invoke a method and when using special options like Repeat it shall exexute after the Repeat.
My problem for now is that the method will already ...
7
votes
3answers
423 views
Is there a fluent email library for c#?
I've been writing a bunch of email code lately and it occurred to me that it'd be pretty cool if there was a library that allowed you to fluently create an email in c#.
I had a quick look around but ...
7
votes
5answers
499 views
Partial generic type inference possible in C#?
I am working on rewriting my fluent interface for my IoC class library, and when I refactored some code in order to share some common functionality through a base class, I hit upon a snag.
Note: This ...
7
votes
6answers
288 views
Persisting complex test data
We are using builder pattern to generate test data. These domain objects have relations between them. Our functional tests require these objects to be persisted.
Think about this model:
If I want ...
6
votes
1answer
133 views
Using generic constraints with value types
I am experimenting with fluent extension methods.
I have the following simple extension method to perform a safe cast.
public static T As<T>(this Object source)
where T : class
...
6
votes
4answers
145 views
Does including prepositions at the end of method names follow or detract from normal C# API design?
I know this sounds like a subjective answer, but I will try to make the question as objective as possible, because an objective answer to the question would be the most helpful.
I recently had a code ...
6
votes
4answers
321 views
Effects of method chaining
I know the benefits of chaining within PHP but lets say we have this following situation
$Mail = new MailClass("mail")
->SetFrom("X")
->SetTo("X")
->SetSubject("X")
...
6
votes
1answer
181 views
Do fluent interfaces significantly impact runtime performance of a .NET application?
I'm currently occupying myself with implementing a fluent interface for an existing technology, which would allow code similar to the following snippet:
using (var directory = ...
6
votes
4answers
310 views
method names with fluent interface
I have a Permissions class in Java with methods in fluent style like this:
somePermissions.setRead(true).setWrite(false).setExecute(true)
The question is, whether I should name these methods ...
6
votes
4answers
486 views
Fluently setting C# properties and chaining methods
I'm using .NET 3.5. We have some complex third-party classes which are automatically generated and out of my control, but which we must work with for testing purposes. I see my team doing a lot of ...
6
votes
2answers
478 views
Lambda Func<> and Fluent
There are lots of Fluent implementations out there now that work with Lambdas to do things that are quite neat. I'd like to wrap my brain around it so I can start creating some of these things, but I ...
6
votes
4answers
688 views
What conventions/idioms/patterns are you using configuring IOC Containers using the new Fluent Interfaces
I am in the middle of moving over a large body of code to Castle Trunk which includes the new fluent interface for configuring the container. Since the project has a huge windsorConfig xml file that ...
6
votes
2answers
1k views
Fluent interfaces in C#
I have a question with fluent interfaces.
We have some objects that are used as parameter objects for a SQL interface, here's an example:
using (DatabaseCommand cmd = conn.CreateCommand(
"SELECT ...
5
votes
1answer
150 views
Self bound generic type with fluent interface and inheritance
I am using a fluent interface with inheritance. I declared the base class Constructor protected so you cant create a Foo<Bar> which would result in a ClassCastException on calling add(). But i ...
5
votes
2answers
427 views
How do you use Castle Windsor - Fluent Interface to register a generic interfaces?
Castle Windsor just came out with a Fluent interface for registering components as an alternative to using XML in a config file. How do I use this Fluent interface to register a Generic interface?
To ...
5
votes
4answers
5k views
Entity Framework Code First Mapping Foreign Key Using Fluent API
I have the situation where a User can have several addresses. Accordingly, I have an ICollection on my user class. But I also want the user to be able to choose a default address. So I've done the ...
5
votes
1answer
400 views
Fluent interface design and code smell
public class StepClause
{
public NamedStepClause Action1() {}
public NamedStepClause Action2() {}
}
public class NamedStepClause : StepClause
{
public StepClause Step(string name) {}
}
...
5
votes
2answers
201 views
Question regarding fluent interface in C#
I have the following class:
public class Fluently
{
public Fluently Is(string lhs)
{
return this;
}
public Fluently Does(string lhs)
{
return this;
}
public Fluently ...
5
votes
3answers
496 views
How do I unit test code that uses a Fluent interface?
I've created a few small fluent interfaces through method chaining. They typically call a number of Repositories that fetch data from webservices / databases.
How should I go about unit testing ...
5
votes
8answers
404 views
C#: Returning 'this' for method nesting?
I have a class that I have to call one or two methods a lot of times after each other. The methods currently return void. I was thinking, would it be better to have it return this, so that the methods ...
4
votes
2answers
3k views
EF 4.1 RC Code First - Mapping to existing database & specifying foreign key name
I have two classes. A Company has a County set against it:
public class Company
{
public int Id { get; set; }
public string CompanyName { get; set; }
public Country HomeCountry { get; ...
4
votes
1answer
135 views
New Styles in C#
Fluent APIs are very common these days. Lately, I'm finding them in almost every system I work with. Mostly, they enhance readability but sometimes they lock me in to inflexible specifications, making ...
4
votes
3answers
586 views
C# Lambda+Extensions+Fluent - How Would I Do This?
I want to be able to create "Transformation" classes that take a given object, perform a series of transformations on it (i.e. change property values) and keeps track of the transformations performed. ...
4
votes
5answers
188 views
Which is more fluent - longer or shorter syntax?
I am trying to create my first fluent interface and I was just wondering what other poeple thought was more fluent and which one they would prefer to use?
...
4
votes
1answer
155 views
Fluent Interfaces - the number of objects being created
I am in the process of creating some fluent interfaces for some simple validation stuff that I am playing around with. One thing that I have noticed is that I have a lot of different objects being ...
4
votes
1answer
271 views
Mixing fluent and non-fluent interface in one class
I consider fluent interfaces very convenient for many tasks. But I feel uneasy when I end up mixing fluent methods and modifying methods in one class.
Just an example (it's a little contrived, please ...
4
votes
2answers
1k views
Castle Windsor Fluent Registration - What does Pick() do?
When using auto-registration with castle windsor I see people doing things like
_container.Register(
AllTypes.Pick().FromAssembly(Assembly.GetExecutingAssembly())
...
4
votes
3answers
2k views
Combine Fluent and XML mapping for NHibnernate
I just fell in love with NHibernate and the fluent interface. The latter enables very nice mappings with refactoring support (no more need for xml files).
But nobody is perfect, so I am missing the ...
4
votes
2answers
1k views
How do I get access to Castle Windsor's Fluent Interfaces API?
I've been having tons of problems getting the non-xml configuration for Castle Windsor set up working properly. In the meantime I've seen more and more people giving advice via the Windsor Container ...
3
votes
3answers
250 views
How can I combine fluent interfaces with a functional style in Scala?
I've been reading about the OO 'fluent interface' approach in Java, JavaScript and Scala and I like the look of it, but have been struggling to see how to reconcile it with a more ...
3
votes
1answer
72 views
Castle Windsor Fluent Configuration: Is it possible to make a specific lifestyle for a given service without using the concrete implementation?
I have a collection of services that I want to register with Castle Windsor (version 3.0 RC1) using the fluent registration technique.
I want all of them except for a particular one to use the ...
3
votes
1answer
75 views
Why must we assign a clone to a new variable?
I am currently learning to use the Propel ORM, and I want to reuse a critera for two slightly different queries:
$criteria = ArticleQuery::create()
->filterByIsPublished(true)
...
3
votes
4answers
52 views
method name for a long method
The good style (Clean Code book) says that a method's name should describe what the method does. So for example if I have a method that verifies an address, stores it in a database, and sends an ...