我是靠谱客的博主 伶俐寒风,最近开发中收集的这篇文章主要介绍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

最后

以上就是伶俐寒风为你收集整理的EF调用存储过程的全部内容,希望文章能够帮你解决EF调用存储过程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部