up vote 2 down vote favorite
1

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?

flag

76% accept rate

2 Answers

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|flag
so that link will always give me the latest and greatest? – Max Jul 28 '09 at 3:24
looks like it- that was easy! THANKS! – Max Jul 28 '09 at 3:27
Confirmed. This is 100% true. Helped me fix the same issue updating to SQLite. Thanks Nick. – tyndall 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
up vote 0 down vote

I'm sorry about this, but I have same problem with Max and I've tried to download and compile with VS2008 Express Edition but the project file unsupported with VS2008 Express Edition.

If anyone willing to upload compiled latest binary file, I can only thank you for your help.

Regards,

AJ

link|flag
oh yeah! I got that's file under bin\Release directory. Problem solved. – AJ Nov 13 '09 at 9:35

Your Answer

get an OpenID
or
never shown

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