up vote 2 down vote favorite
1
share [g+] share [fb]

Seems fairly straight forward and simple, I am doing the following and getting an 'Object reference not set to an instance of an object.' error. It's a very simple update.

   [AcceptVerbs(HttpVerbs.Post)][Authorize(Roles="admin")][ValidateInput(false)]
    public ActionResult SaveContent(int id, string content)
        {
            var page = _repos.Single<Models.Page>(p=>p.PageID == id);
            page.PageContent = content;
            _repos.Update(page);
             return RedirectToAction("Index",new { pagename=page.Name});
         }

I can see in the debugger that I am actually getting my object and updating it with new values but the _repos.Update(page); chokes every time.

Anyone else having this issue?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

This is a bug of SubSonic 3.0.0.3, you should go to http://github.com/subsonic/SubSonic-3.0/tree/master, get the latest source code and build the dll yourself.

link|improve this answer
so that link will always give me the latest and greatest? – Slee Jul 28 '09 at 3:24
looks like it- that was easy! THANKS! – Slee Jul 28 '09 at 3:27
Confirmed. This is 100% true. Helped me fix the same issue updating to SQLite. Thanks Nick. – brun Aug 13 '09 at 23:50
Had the same issue with Advanced/Linq Templates. A fresh build and I was fixed. – JoshRivers Aug 16 '09 at 4:17
feedback

Your Answer

 
or
required, but never shown

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