Created
September 26, 2012 16:35
-
-
Save MarioBinder/3789063 to your computer and use it in GitHub Desktop.
SQL Procedure -EF Code First
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.Database.SqlCommand("dbo.News_Insert @Title, @Body, @NewsStatusId", | |
new SqlParameter("Title", news.Title), | |
new SqlParameter("Body", news.Body), | |
new SqlParameter("NewsStatusId", news.NewStatus.Id)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment