I currently have the following code:

public MyObject SessionStore
{
    get
    {
        if (Session["MyData"] == null)
            Session["MyData"] = new MyObject();

        return (MyData) Session["MyData"]; 
    }

    set 
    { 
        Session["MyData"] = (MyObject) value; 
    }
}

I access it using SessionStore.ThePropertyIWant

I set it using SessionStore = SessionStore

This works; but is there a better way of accomplishing the same thing?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You don't need to cast in the setter, and can make the getter more concise :

public MyData SessionStore
{
    get { return (MyData)(Session["MyData"]) ?? new MyData(); }
    set { Session["MyData"] = value; }
}
link|improve this answer
using ?? is not always a good idea. I used it for a while until I added a List<object> to the session as a property. Then whenever I called the property to add an item a new emtpy list was always returned. If you have a work around for this let me know! – WraithNath Apr 1 '11 at 10:03
"You don't need to cast in the setter" - re-sharper agrees ;) – Chris M Apr 1 '11 at 10:03
@WraithNath : I like to use it for simple cases like this. Its like the "?" operator, thou shall not overuse it ;) – mathieu Apr 1 '11 at 10:06
@mathieu - yeah me too :) just though I would mention it incase anyone tried it with a list and wondered why items would not add to it! – WraithNath Apr 1 '11 at 10:10
@WraithNath - sounds like the problem was somewhere else in your code, not with the ?? operator itself. – MattDavey Apr 1 '11 at 10:27
show 1 more comment
feedback

SessionStore is fine but you could end up with alot of properties. I tend to add protected properties to base bases and access from there.

eg:

/// <summary>
/// Gets or Sets the Current Order Line
/// </summary>
protected OrderLine CurrentOrderLine
{
    get
    {
        if (Session["CurrentOrderLine"] == null)
        {
            Session["CurrentOrderLine"] = new OrderLine(this.CurrentOrder);
        }

        return Session["CurrentOrderLine"] as OrderLine;
    }
    set
    {
        Session["CurrentOrderLine"] = value;
    }
}

then it would appear as a property on your page if you inheriet from it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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