0
我需要在最後一行投類型爲(類型)反射+的Linq +型鑄造
cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
.GetProperty(entityName & "s") _
.GetGetMethod() _
.Invoke(m_Entities, Nothing), ObjectSet(Of ACAmp)))
.OrderBy(Function(c As ACAmp)) c.SortOrder).ToList()
現在我需要做的semeting這樣的:
cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
.GetProperty(entityName & "s") _
.GetGetMethod() _
.Invoke(m_Entities, Nothing), ObjectSet(Of Type.GetType("ACAmp"))).OrderBy(Function(c As Type.GetType("ACAmp")) c.SortOrder).ToList()
的類型。 GetType(「ACAmp」)不是goog,但類型可以通過字符串傳遞。怎麼樣 ?
目前還不清楚你在問什麼。 – 2011-05-12 16:54:29
我想用(GetType(「ACAmp」))替代(的ACAmp) – Francis 2011-05-12 17:55:35