Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This part of code is not working

@foreach (var item in Model) {
        <tr>
            <td>
            @Html.DisplayFor(modelItem=>item.Registrations.Count())
         </td>

and throws an error [InvalidOperationException: Templates can be used only with field access, property access, single-dimension array index, or single-parameter custom indexer expressions.]

But this part of code below is working as a charm.

@foreach (var item in Model) {
    <tr>
        <td>
           @item.Registrations.Count()
        </td>

Is there anybody who can explain why is so??

Rgds

Zen

share|improve this question

1 Answer

I'd think it's because you're using modelItem=>item.Registrations.Count(). DisplayFor wants an expression that refers to a member of your model, not a function on a member's method as the model binder wouldn't know how to serialise the data on the way back (i.e. after a form post).

EDIT: I'd weirdly had the same error but for a completely different reason which turned out to be that the DateTime needed to be nullable

share|improve this answer
This is correct. The problem is that you are using the Count() method as parameter for DisplayFor, which is not allowed. The parameter to DisplayFor must be a property or field. – Erik Schierboom Apr 15 at 13:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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