我有一个方法是在ObjectQuery对象中返回ObjectQuery的对象,对象的类型是ObjectQuery,现在我想在这个对象中包含表 使用反射,我称之为包括使用反射的方法,但我得到错误可以有人请告诉我错误。这是示例代码。
ObjectQuery objTest = LoadEntitiy(entites,entityClassType);
public ObjectQuery LoadEntitiy(ClientEntities entities, Type entityClasstype)
{
PropertyInfo pi = entities.GetType().GetProperties().First(item => item.Name == entityClasstype.Name.ToString());
Object obj = pi.GetValue(entities, null);
Type objContext = obj.GetType();
return (ObjectQuery)obj;
}
现在我正在调用使用此处的反射来包含它的方法
Type lstType = typeof(ObjectQuery<>);
Type constructedType = lstType.MakeGenericType(typeof(ObjectQuery<>));
MethodInfo addListItemMethod = constructedType.GetMethod("Include");
addListItemMethod.Invoke(objTest, new object[] {"tablename" });
答案 0 :(得分:0)
您似乎希望定义约定以始终“包含”某组数据。
此约定通常称为预先加载,并且还有延迟加载等替代方法。
EF 4.1或更高版本已包含为您执行此操作的功能,请参阅http://msdn.microsoft.com/en-us/library/gg715120(v=vs.103).aspx
答案 1 :(得分:0)
Type lstType = typeof(ObjectQuery<>);
Type constructedType = lstType.MakeGenericType(typeof(T(which u want to send as parameter)));
MethodInfo addListItemMethod = constructedType.GetMethod("Include");
object objtest = addListItemMethod.Invoke(objTest, new object[] {"tblname" });
现在objtest包含了你想要包含的所有表名。