Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to get the first value from a collection that a property of another object. If there are no values in the collection, of if the collection is null you have to write extra code to create the new object and add it to the collection. You may also have to instantiate the collection itself if it's null.
I would like to to do this in one line, preferably by some method like FirstOrAddNew. What are some possible implementations?

share|improve this question
The .NET Framework design guidelines recommend that array or collection properties should not return null, but instead return an empty collection. They also recommend that array or collection properties should be read-only as typically you don't want consumers swapping out your collection from under you. So although your method may work in some cases, it will only work with classes that break some fairly fundamental design guidelines. – Greg Beech Jul 5 '12 at 18:51
1  
You should write the question as a question. Describe the problem. Then post your answer. Other people may have other answers to that question as well. Make it a true question/answer post, not just a snippet drop. – hatchet Jul 5 '12 at 18:55
@Greg In my case I'm dealing with an NHibernate entity which is a read/write object so I don't think writing to the collection is a problem. Sure, I could change the Entity to always provide the first object on property Get but then I would have to use a private variable for NH mapping. – Alex Jul 5 '12 at 19:06
(I didn't downvote) I'm not trying to discourage answering your own question, just suggesting how to do it for the best value for stackoverflow. This goes into more detail (read comments to that blog too): blog.stackoverflow.com/2011/07/… – hatchet Jul 5 '12 at 19:13
ok, I rewrote it. Now is it up to standards? – Alex Jul 5 '12 at 19:32

closed as not a real question by Servy, user414076, casperOne Jul 10 '12 at 13:54

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

If the collection is non-null then this is a cleaner method to use. Doesn't require for the collection to have a host object either.

/// <summary>
/// Returns the first element in the enumerable or creates a new object by calling the default constructor.
/// The new object gets added to the collection
/// </summary>
/// <typeparam name="T">type of object in collection</typeparam>
/// <param name="collection">a non-null collection</param>
/// <returns>first or new object in collection</returns>
public static T FirstOrAddNew<T>(this ICollection<T> collection) where T : class, new()
{
    if(collection == null)
        throw new ArgumentNullException("collection", "Can't add new objects to null collection");

    if (collection.Count == 0)
        collection.Add(new T());

    var f = collection.FirstOrDefault();

    return f;
}
share|improve this answer
/// <summary>
/// Returns the first element in the specified collection or adds a new object to the collection and returns it
/// </summary>
/// <typeparam name="T">type of object containing the collection</typeparam>
/// <typeparam name="TObj">type of ojbect in collection</typeparam>
/// <param name="sourceObject">the object containing the collection</param>
/// <param name="expression">which property has the collection</param>
/// <returns>first or new object</returns>
/// <example>var employee = boss.FirstOrAddNew(x => x.Employees);</example>
public static TObj FirstOrAddNew<T, TObj>(this T sourceObject, Expression<Func<T, ICollection<TObj>>> expression) 
                                            where T : class
                                            where TObj : class, new()
{
    var expr = expression.Body as MemberExpression ?? ((UnaryExpression)expression.Body).Operand as MemberExpression;

    if (expr == null)
        throw new Exception("Expression must be a field or property");

    var eProp = typeof(T).GetProperty(expr.Member.Name);

    var coll = (ICollection<TObj>)eProp.GetValue(sourceObject, null);

    if (coll == null) //the collection is null
    {
        ICollection<TObj> newColl;
        try
        {
            newColl = (ICollection<TObj>)Activator.CreateInstance(eProp.PropertyType);
        }
        catch(Exception)
        {
            newColl = new Collection<TObj>();
        }
        newColl.Add(new TObj());
        eProp.SetValue(sourceObject, newColl, null);
        return newColl.First();
    }

    if(coll.Count == 0)
    {
        var newTObj = new TObj();
        coll.Add(newTObj);
        return newTObj;
    }

    return coll.First();
}
share|improve this answer
What if the type of the collection is List<T> instead of an array? What if there's no setter? I think it would be better to just ensure each collection is non-null on construction. – Lee Jul 5 '12 at 18:31
List<T> implements ICollection<T> so that should be fine. No setter is a problem. What if you are not in charge of construction or simply don't want to write the non-null checks at that time? Different strokes for different folks. – Alex Jul 5 '12 at 18:55
If it's a List<T> then you're assigning an array to a property with type List<T> so you'll get an exception. Your code will only work if the collection is an array of T or is typed as ICollection<T>. – Lee Jul 5 '12 at 19:00
@Lee how would you change the method to support List<T> – Alex Jul 5 '12 at 19:12
You could get the collection property type through reflection and use Activator.CreateInstance to create your new collection. Alternatively you could change the signature to FirstOrAddNew<T, TCol, TObj>(this T source, Expression<Func<T,TCol>> expr) where T : class where TObj : class, new() where TCol : ICollection<TObj>, new() and then you can guarantee the collection has a default constructor. If you can help it though, it's better to not allow null collections on your objects. – Lee Jul 5 '12 at 19:21
show 1 more comment

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