我有 2 张桌子。使用外键链接到设备表的资产表。
要获取资产的 device_name 字段,在 linq 中我会使用:
dim device as string = result.device.device_name
Result 对象包含来自早期 linq to entity 框架命令的唯一记录。
现在我需要允许最终用户在报告中指定他们想要的字段。我最终会得到一个字段的字符串名称,所以尝试使用反射
dim name as string = result.GetType().GetProperty("asset_name").GetValue(result)
这会返回asset_name 字段,所以我觉得很好,我应该能够获得相关的外部表字段值。
dim device = result.GetType().GetProperty("device").GetValue(result).GetType.GetProperty("device_name").GetValue(result.device)
这可行,但是我必须指定对象。由于我将有其他表链接到第一个表,我是否必须编写额外的代码来检查什么对象并手动指定?还是我错了?任何帮助和建议表示赞赏。