zoukankan      html  css  js  c++  java
  • Entity Framework Raw SQL Queries

     

    Updated: October 23, 2016

    Entity Framework allows you to query using LINQ with your entity classes. However, there may be times that you want to run queries using raw SQL directly against the database. This includes calling stored procedures, which can be helpful for Code First models that currently do not support mapping to stored procedures. The techniques shown in this topic apply equally to models created with Code First and the EF Designer.

    The SqlQuery method on DbSet allows a raw SQL query to be written that will return entity instances. The returned objects will be tracked by the context just as they would be if they were returned by a LINQ query. For example:

     
     
    using (var context = new BloggingContext()) 
    { 
        var blogs = context.Blogs.SqlQuery("SELECT * FROM dbo.Blogs").ToList(); 
    }
    
    

    Note that, just as for LINQ queries, the query is not executed until the results are enumerated—in the example above this is done with the call to ToList.

    Care should be taken whenever raw SQL queries are written for two reasons. First, the query should be written to ensure that it only returns entities that are really of the requested type. For example, when using features such as inheritance it is easy to write a query that will create entities that are of the wrong CLR type.

    Second, some types of raw SQL query expose potential security risks, especially around SQL injection attacks. Make sure that you use parameters in your query in the correct way to guard against such attacks.

    Loading entities from stored procedures

    You can use DbSet.SqlQuery to load entities from the results of a stored procedure. For example, the following code calls the dbo.GetBlogs procedure in the database:

     
     
    using (var context = new BloggingContext()) 
    { 
        var blogs = context.Blogs.SqlQuery("dbo.GetBlogs").ToList(); 
    }
    
    

    You can also pass parameters to a stored procedure using the following syntax:

     
     
    using (var context = new BloggingContext()) 
    { 
        var blogId = 1; 
     
        var blogs = context.Blogs.SqlQuery("dbo.GetBlogById @p0", blogId).Single(); 
    }
    
    

    A SQL query returning instances of any type, including primitive types, can be created using the SqlQuery method on the Database class. For example:

     
     
    using (var context = new BloggingContext()) 
    { 
        var blogNames = context.Database.SqlQuery<string>( 
                           "SELECT Name FROM dbo.Blogs").ToList(); 
    }
    
    

    The results returned from SqlQuery on Database will never be tracked by the context even if the objects are instances of an entity type.

    Non-query commands can be sent to the database using the ExecuteSqlCommand method on Database. For example:

     
     
    using (var context = new BloggingContext()) 
    { 
        context.Database.ExecuteSqlCommand( 
            "UPDATE dbo.Blogs SET Name = 'Another Name' WHERE BlogId = 1"); 
    }
    
    

    Note that any changes made to data in the database using ExecuteSqlCommand are opaque to the context until entities are loaded or reloaded from the database.

    Output Parameters

    If output parameters are used, their values will not be available until the results have been read completely. This is due to the underlying behavior of DbDataReader, see Retrieving Data Using a DataReader for more details.

  • 相关阅读:
    李航统计学习方法(第二版)(六):k 近邻算法实现(kd树(kd tree)方法)
    ActiveMQ的安装和启动
    HTML select autofocus 属性
    macpath (File & Directory Access) – Python 中文开发手册
    Java Bitset类
    Linux zip命令
    HTML DOM Keygen 对象
    tanh (Numerics) – C 中文开发手册
    no-shadow (Rules) – Eslint 中文开发手册
    require-await (Rules) – Eslint 中文开发手册
  • 原文地址:https://www.cnblogs.com/Jayesslee/p/9317794.html
Copyright © 2011-2022 走看看