zoukankan      html  css  js  c++  java
  • Web API 2 Entity Framework 使用 Procedure

    Recently I worked on a project, which I started as code first and then I forced to switch to Database first. This post is about executing procedures from EF code first.(This is an update version of this post Here is my class structure and procedures.

    class DatabaseContext : DbContext
    {
        public DbSet<Book> Books { get; set; }
        public DbSet<Author> Authors { get; set; }
    }
    
    class Book
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string ISBN { get; set; }
        public int AuthorId { get; set; }
    }
    
    class Author
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Email { get; set; }
    }

    And here is my stored procedures

    CREATE PROCEDURE usp_CreateBook
    @BookName VARCHAR(200), @ISBN VARCHAR(200), @BookId INT OUTPUT
    AS
    SET NOCOUNT ON
    INSERT INTO Books(Name, ISBN, AuthorId) VALUES(@BookName, @ISBN, 1)
    SET @BookId = (SELECT SCOPE_IDENTITY())
    
    CREATE PROCEDURE usp_CreateAuthor
    @AuthorName VARCHAR(200), @Email VARCHAR(200) = NULL
    AS
    INSERT INTO Authors(Name, Email) VALUES(@AuthorName, @Email)
    
    CREATE PROCEDURE usp_GetAuthorByName
    @AuthorName VARCHAR(200)
    AS
    SELECT [Id] ,[Name] ,[Email] FROM [Authors]
    WHERE Name = @AuthorName

    And you can execute using DbContext.Database class. The DbContext.Database.ExecuteSqlCommand() method helps to executes the given DDL/DML command against the database. And it will return the number of rows affected.

    var affectedRows = context.Database.ExecuteSqlCommand("usp_CreateAuthor @AuthorName, @Email",
        new SqlParameter("@AuthorName", "author"),
        new SqlParameter("@Email", "email"));

    Or you can use without creating the SqlParameters.

    var affectedRows = context.Database.ExecuteSqlCommand
        ("usp_CreateAuthor @AuthorName = {0}, @Email= {1}", 
        "author", "email");

    The DbContext.Database.SqlQuery method helps to return elements of the given generic type. The type can be any type that has properties that match the names of the columns returned from the query, or can be a simple primitive type.

    var authors = context.Database.SqlQuery<Author>("usp_GetAuthorByName @AuthorName", 
        new SqlParameter("@AuthorName", "author"));

    This method will return an DbRawSqlQuery, which you can enumerate using For / ForEach loop. For executing procedure with output parameter.

    var bookIdParameter = new SqlParameter();
    bookIdParameter.ParameterName = "@BookId";
    bookIdParameter.Direction = ParameterDirection.Output;
    bookIdParameter.SqlDbType = SqlDbType.Int;
    var authors = context.Database.ExecuteSqlCommand("usp_CreateBook @BookName, @ISBN, @BookId OUT",
        new SqlParameter("@BookName", "Book"),
        new SqlParameter("@ISBN", "ISBN"),
        bookIdParameter);
    Console.WriteLine(bookIdParameter.Value);
  • 相关阅读:
    pd_ds中的hash
    洛谷P1333 瑞瑞的木棍(欧拉回路)
    2-SAT速成
    洛谷P3209 [HNOI2010]PLANAR(2-SAT)
    BZOJ2199: [Usaco2011 Jan]奶牛议会(2-SAT)
    BZOJ 1823: [JSOI2010]满汉全席(2-SAT)
    IOS深入学习(1)之图标文件(icon files)
    控制反转思想的理解实例
    poj 3259 (Bellman_Ford判断负环)
    POJ 2686 Traveling by Stagecoach 壮压DP
  • 原文地址:https://www.cnblogs.com/Javi/p/6438469.html
Copyright © 2011-2022 走看看