如何将 e.item.dataitem 转换为 (Of T) 类型
我试图在 asp.net 中的数据网格的 item_databound 事件中执行此操作,
Dim EntType As EmployeeEntity = DirectCast(e.Item.DataItem, EmployeeEntity )
但遇到错误
无法转换为 EmployeeEntity 类
EmployeeEntity 类与 e.Item.DataItem 的 DataRowView 项目中的项目具有相同的成员。 那么,我还能如何从 e.Item.DataItem 中投射内容,而无需实际单独设置 EemployeeEnity 的每个属性?
I'm trying to do this in an item_databound event of a datagrid in asp.net
Dim EntType As EmployeeEntity = DirectCast(e.Item.DataItem, EmployeeEntity )
but I encounter the error
Cannot convert to class EmployeeEntity
The EmployeeEntity class has the same members as the items in e.Item.DataItem's DataRowView items.
so how else do i cast the contents, without having to actually set each property of EemployeeEnity individually, from the e.Item.DataItem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你无法神奇地将一种类型变成另一种类型,即使它们具有相同的属性。
您需要自己复制属性。
You cannot magically turn one type into another, even if they have the same properties.
You need to copy the properties yourself.
一个词,AutoMapper
One word, AutoMapper