Having Collection initializers in C# and being allowed to define properties of a class without having to call the constructor, is there any point in using Method Chaining in C#? I can't see any. Maybe I'm missing something here?

Thanks

link|improve this question

1  
Are you specifically asking whether there is any point in using method chaining for building a complex object, as opposed to other uses of method chaining? – Pete Kirkham May 21 '10 at 16:20
I was thinking mainly in building property objects, as that is the example I generally see around. But seems like I had forgot about examples like LINQ, where you are really chaining a set of actions. – devoured elysium May 21 '10 at 16:29
feedback

3 Answers

up vote 5 down vote accepted

LINQ?

var item = sequence.Where(x => x.Age > 100)
                   .Select(x => new { x.FirstName, x.LastName })
                   .OrderBy(x => x.LastName)
                   .FirstOrDefault();
link|improve this answer
feedback

A common use is fluent interfaces

EDIT: In response to the questions in the comments, property/collection initialisers are fairly limited in that you can only set propeties or call the Add method on a collection, whereas method calls are more flexible since they can take multple arguments.

A fluent interface is just one specific use of method chaining to produce a more readable API, often for object builders.

Also, as an aside that MSDN article is quite misleading since object initialisers don't allow you to bypass the constructor, it's just that in the example, the StudentName class has a default constructor which does nothing.

link|improve this answer
I am not asking what are their common uses, I'm if there is any point in using the "old" method chaining in C# as you have both collection and property initializers. – devoured elysium May 21 '10 at 16:15
@devoured elysium: Perhaps you need to tell us what you consider the "old" method chaining to be. – LukeH May 21 '10 at 16:18
btw, what really is the difference between method chaining and fluent interfaces? – devoured elysium May 21 '10 at 16:19
@Lee: +1 for calling out the misleading MSDN article. I was about to do the same. – LukeH May 21 '10 at 16:29
show 1 more comment
feedback

CuttingEdge.Conditions is a good example of why method chaining is convenient?

public void GetData(int? id)
{
    // Check all preconditions:
    Condition.Requires(id)
        .IsNotNull()
        .IsInRange(1, 999)
        .IsNotEqualTo(128);
}
link|improve this answer
Good example, indeed. – devoured elysium May 21 '10 at 17:13
feedback

Your Answer

 
or
required, but never shown

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