3
上面可以看到FollowingUsers
和StatusUpdates
表。
在FollowingUsers
,我存儲Follower
的Username
和Following
的Username
。 在StatusUpdates
,我店Status updates
的用戶。
下面你可以看到我寫的檢索誰在登錄的用戶的狀態更新原始查詢。
var list = new List<StatusUpdate>();
list = (from x in db.StatusUpdates
where x.Author == User.Identity.Name
orderby x.Timestamp descending
select x)
.Take(count).ToList();
如何從以下獲取狀態更新的登錄用戶?
謝謝Tuskan360。但它沒有工作:( – ChamingaD 2011-12-21 18:36:21
你能更具體嗎?什麼沒有工作?你得到一個錯誤信息嗎?它編譯嗎?你剛剛得到錯誤的數據嗎? – ForbesLindesay 2011-12-21 19:14:04
另外,你是否使用查詢SQL數據庫LINQ to SQL?或其他東西? – ForbesLindesay 2011-12-21 19:14:37