随笔分类 -  Entity Framework

摘要:IntroductionThis article is part of the ongoing series I’ve been writing recently, but can be read as a standalone article. I’m going to do a better j... 阅读全文
posted @ 2014-05-07 16:00 happyu0223 阅读(585) 评论(0) 推荐(0)
摘要:Detached objects, or objects that are created outside of Entity Framework(EF), don't have automatic tracking enabled, and updating database from detac... 阅读全文
posted @ 2014-05-07 15:51 happyu0223 阅读(312) 评论(0) 推荐(0)
摘要:IntroductionRecently I was playing around with Entity Framework (EF) and evaluating it for some projects. I had a very hard time figuring out how to a... 阅读全文
posted @ 2014-05-07 15:50 happyu0223 阅读(419) 评论(0) 推荐(0)
摘要:ALTER PROCEDURE [dbo].[GetAll]ASBEGIN SET NOCOUNT ON; SELECT * FROM Customers SELECT * FROM Orders SELECT * FROM ProductsENDThe Stored PROCEDURE retur... 阅读全文
posted @ 2014-03-31 16:05 happyu0223 阅读(252) 评论(0) 推荐(0)