EF调用存储过程

 public int PublishNews(News news)
        {
            SqlParameter[] param = new SqlParameter[]
             {
                new SqlParameter("@NewsTitle",news.NewsTitle),
                new SqlParameter("@NewsContents",news.NewsContents),
                new SqlParameter("@CategoryId",news.CategoryId)
             };
            using (HotelDBEntities db = new DAL.HotelDBEntities())
            {
                return db.Database.ExecuteSqlCommand("execute usp_AddNews @NewsTitle,@NewsContents,@CategoryId", param);
            }
        }

sql脚本:

use HotelDB
go

--发布新闻
if exists  (select * from sysobjects  where name='usp_AddNews')
drop procedure usp_AddNews
go
create procedure usp_AddNews
@NewsTitle varchar(100), 
@NewsContents text, 
@CategoryId int
as
	insert into News(NewsTitle, NewsContents, CategoryId)
	values(@NewsTitle, @NewsContents, @CategoryId)
	--得到上一次插入记录时自动产生的ID
	select @@IDENTITY
go

if exists  (select * from sysobjects  where name='usp_ModifyDishes')
drop procedure usp_ModifyDishes
go
create  procedure usp_ModifyDishes
@DishesId int, 
@DishesName varchar(100), 
@UnitPrice numeric(18,2), 
@CategoryId int
as
	update Dishes set  DishesName=@DishesName, UnitPrice=@UnitPrice, 
	CategoryId=@CategoryId where  DishesId=@DishesId
go
create table Dishes --菜品表
(
	DishesId int  identity(100,1)  primary key , --菜品编号
	DishesName varchar(100),--菜品名称
	UnitPrice numeric(18,2), --价格
	CategoryId int references DishesCategory(CategoryId)--分类编号
)
go

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值