动态调用实体框架中的存储过程

时间:2013-09-21 00:58:58

标签: c# .net sql entity-framework reflection

给定一个名称,我需要检查我们的EDMX中是否存在具有该名称的存储过程,然后使用其参数运行它。

要调用的sproc是由context.Database.SqlQuery找到的,查询的参数是通过context.GetQueryParameters(string QueryName)运行已知的sproc找到的。

我留下了一个sproc名称,它是SQL参数名称和类型。

提前感谢您的帮助!这一直在杀我......

1 个答案:

答案 0 :(得分:1)

很难准确猜出你使用的是什么,但基于你使用GetQueryParameters作为proc名称,我猜这是否适用于不同的查询/搜索。

如果这些都返回相同类型(搜索结果),并且您希望在EF中执行此操作的原因是强类型,则可以执行以下操作: (示例使用EF5和LinqPad中的测试上下文)

using (var context = new TestEntities())
{
    string procname = "GetPrograms";
    // context has method GetPrograms(int? id)

    // Method1 - use the method on the context
    // This won't work dynamically
    IEnumerable<GetPrograms_Result> result1 = context.GetPrograms(4);
    result1.Dump("Method1");

    // Method2 - use reflection to get and use the method on the context
    // Building your parameters needs to be in the order they are on the method
    // This gets you an IEnumerable, but not a strongly typed one

    MethodInfo method = context.GetType().GetMethod(procname);
    method.GetParameters();
    List<object> parameters = new List<object>();
    parameters.Add(4);

    IEnumerable result2 = (IEnumerable) method.Invoke(context,parameters.ToArray());
    result2.Dump("Method2");

    // Method3 - make a SqlQuery call on a common return type, passing a dynamic list
    // of SqlParameters.  This return type can be but dows not need to be an Entity type

    var argList = new List<SqlParameter>();
    argList.Add(new SqlParameter("@id",4));

    object[] prm = argList.ToArray();
    var csv = String.Join(",",argList.Select (l => l.ParameterName));

    IEnumerable<GetPrograms_Result> result3 = context.Database.SqlQuery<GetPrograms_Result>("exec " + procname + " " + csv ,prm);
    result3.Dump("Method3");
}