我正在編寫一個應用程序,我想根據它們在主索引頁面上創建的日期列出博客文章。因此,可以說,如果我有一個是今天我想有這樣的不便前來的應用程序的索引頁面上創建10個博客帖子.. 今天: POST 1 POST 2 POST 3 ...等等 不過,我有這個... 今日: POST 1 今日: POST 2 今日: POST 3 ...等等 以下是我的代碼.. index.html.erb <% @post
我想從數據庫使用Linq查詢獲取記錄列表。 public void Main() {
var filter = new Filter();
filter.ReceiverState = new List<DocumentState> { DocumentState.Completed };
var q = from d in Documents
wher