I'm new to MVC and might not explain myself well.
I've got a controller method that returns a single data item.

var insp = DC.Inspections.FirstOrDefault(x => x.pKey == pKey);

I've tried that as a strongly typed item, as well as a var. It doesn't matter.
when I get to the view, I get the following error:

'IEnumerable<Inspection>' does not contain a definition for 'ProjectName' and no extension method 'ProjectName' accepting a first argument of type 'IEnumerable<Inspection>' could be found

This is because in the view, I reference one of the fields from the model:

@Html.Label(Model.ProjectName, new { id = "lblProject" })

the view specifies the model as:
@model IEnumerable<XYZ.Models.Inspection>


I understand that the issue is that the model is an IEnumerable. How can I specify the model as a single instance of the type I want?