6

I built a class:

public partial class SvcCodes
{
    public List<SvcCodeReport> Report { get; set; }
    public List<SvcCodesCheck> TestList { get; set; }
}

It uses this class:

public partial class SvcCodeReport
{
    public List<Dictionary<string, object>> ProgResults { get; set; }
    public IEnumerable<ExtraData> ExtraData { get; set; }
}

In the controller, data is pulled from two sources and assigned to the SvcCodeReport class:

var model = new SvcCodeReport()
{
  ProgResults = tasks,
  ExtraData = _context.ExtraData.Where(h => h.ServiceCode == Int32.Parse(id)
};

Then the model variable is added to the Report class:

check.Report.Add(model);

But when I run the program, I get a null object error and a line that says:

LRProgReport.Models.SvcCodes.Report.get returned null

Is this error saying that Report is null BEFORE the add or after?

If before, why is that an issue? If after, why is the model variable not being added to the list?

2 Answers 2

11

You should initialize the Report list first and you can do it in the SvcCodes constructor;

public partial class SvcCodes
{
    public List<SvcCodeReport> Report { get; set; }
    public List<SvcCodesCheck> TestList { get; set; }

    public SvcCodes()
    {
        Report = new List<SvcCodeReport>();
    }
}
Sign up to request clarification or add additional context in comments.

1 Comment

Excellent! that's what was missing. Thanks!
1

I suspect you are falling fowl of Linq's deferred execution model. When you do x.Where() etc the code is not run then. It is only run when you finally force the data to be used. Try this instead

var model = new SvcCodeReport()
{
  ProgResults = tasks,
  ExtraData = _context.ExtraData.Where(h => h.ServiceCode == Int32.Parse(id).ToList();
};

This will force _context.ExtraData to be evaluated right there

1 Comment

This is true, but not the OP problem

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.