Spiga

随笔档案 - 2011年3月

asp.net mvc 3.0 with Razor发布到server需要的额外dll

2011-03-03 11:08 by @GB2312, 130 visits, 网摘, 收藏, 编辑
摘要:到目录C:\Program Files\Microsoft ASP.NET\ASP.NET Web Pages\v1.0\Assemblies复制以下dll(我暂时只需要这些)System.Web.WebPages.dllMicrosoft.Web.Infrastructure.dllSystem.Web.WebPages.Razor.dllSystem.Web.WebPages.Deployment.dllSystem.Web.Razor.dll 阅读全文

Executing a stored procedure with an output parameter using Entity Framework

2011-03-02 10:43 by @GB2312, 89 visits, 网摘, 收藏, 编辑
摘要:var p_usr = new SqlParameter { ParameterName = "@usr", Value = user };var p_suc = new SqlParameter { ParameterName = "@suc", Direction = ParameterDirection.Output, SqlDbType = SqlDbType.Int };context.ExecuteStoreCommand("exec sp_User_Delete @usr,@suc output", p_usr, p_s 阅读全文