2019年6月24日 星期一
2019年6月9日 星期日
MvcHandler.DisableMvcResponseHeader = true; 隱藏版本資訊
https://blog.miniasp.com/post/2009/09/02/ASPNET-MVC-Developer-Note-Part-10-Hide-MVC-Version-from-HTTP-Header
在Global.asax.cs的 Application_Start() 事件方法加入
MvcHandler.DisableMvcResponseHeader = true;
在Global.asax.cs的 Application_Start() 事件方法加入
MvcHandler.DisableMvcResponseHeader = true;
2019年6月3日 星期一
ASP.NET MVC移除不需要的顯示引擎
確定網站不會使用WebForm(aspx),不需要WebFormViewEngine,可以把只留RazorViewEngine
在Global.asax.cs加入以下兩行
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new RazorViewEngine());
在Global.asax.cs加入以下兩行
ViewEngines.Engines.Clear();
ViewEngines.Engines.Add(new RazorViewEngine());
ASP.NET Core如何進行Database First開發?
https://ithelp.ithome.com.tw/articles/10201333
Scaffold-DbContext "DBConnectionString" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
Scaffold-DbContext "DBConnectionString" Microsoft.EntityFrameworkCore.SqlServer -OutputDir Models
2019年6月2日 星期日
Many-to-Many在EF和EFcore的寫法差異
Relationships寫法EF和EFcore有點差異,發現有個網站有對照版本,以Many-to-Many為例:
EF版本(用Map)
https://www.entityframeworktutorial.net/code-first/configure-many-to-many-relationship-in-code-first.aspx
EFcore版本(用HasKey)
https://www.entityframeworktutorial.net/efcore/configure-many-to-many-relationship-in-ef-core.aspx
EF版本(用Map)
https://www.entityframeworktutorial.net/code-first/configure-many-to-many-relationship-in-code-first.aspx
EFcore版本(用HasKey)
https://www.entityframeworktutorial.net/efcore/configure-many-to-many-relationship-in-ef-core.aspx
訂閱:
文章 (Atom)