我一直在谷歌搜索:linq to entities does not recognize the method int32 toint32
。 我喜歡varchar
該列表在我的數據庫:LinQ不識別方法'int32 toint32'
1,2,3,4,5,6,7。
我需要訂購該列表並獲取最大值。我使用這個,但它不起作用,我也看到了其他的解決方案,但沒有任何工作。這是我的查詢:
var query= dbcontext.NV_Users.OrderBy(p => Convert.ToUInt32(p.code)).ToList().Max();
而我與正常的查詢努力,也沒有工作:
var query= from _NV_Field in dbcontext.NV_Users
orderby Convert.ToInt32(_NV_Field.code) ascending
select _NV_Field.code;
之前詢問這裏,我已經像一個瘋狂的谷歌搜索。
爲什麼你使用'.Max'?你想完成什麼,即。你想要的結果的文字描述,你能提供嗎? – 2014-09-01 12:44:18