使用MVC我將一個Projects
列表傳遞給視圖。如果列表返回空顯示消息
@if (Model.Projects != null && Model.Projects.Count > 0)
{
<fieldset>
<table class="items" summary="@T("This is a table of the delivery Runs in your application")">
<colgroup>
}
else
{
//no data available
}
Model.Projects.Count> 0是說:
操作>斜面被應用於類型 '方法組' 和 'INT'
噢,抱歉忘了這一點歡呼 – John
你絕對應該使用'任何()',而不是'計數()'因爲你只有intereste d是否有*項目。在這種情況下,計算可能的大集合中的項目是不必要的。 –
是啊改變它的任何()的歡呼 – John