using System.Data.Entity;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
public static void Main()
using (var context = new BookStore())
int affectedRows = context.Database.ExecuteSqlCommand("CreateAuthor @p0, @p1, @p2",
FiddleHelper.WriteTable(context.Authors);
public static void CreateStoredProcedure()
using (var context = new BookStore())
var noOfRows = context.Database
@"IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id =
OBJECT_ID(N'[dbo].[CreateAuthor]') AND type in (N'P', N'PC'))
EXEC dbo.sp_executesql @statement = N'
CREATE PROCEDURE [dbo].[CreateAuthor]
VALUES (@FirstName, @LastName, @Address)
public class BookStore : DbContext
public BookStore() : base(FiddleHelper.GetConnectionStringSqlServer())
public DbSet<Author> Authors { get; set; }
public int AuthorId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string Address { get; set; }