I have this section defined in my _Layout.cshtml
_Layout.cshtml
@RenderSection(\"Scripts\", false)
I can easily use it from a view:
I had the similar problem solved it with this:
@section ***{ @RenderSection("****", required: false) }
Thats a pretty way to inject i guesse.