' IMPORTANT: DATA MODEL REGISTRATION
' Uncomment this line to register LINQ to SQL classes or an ADO.NET Entity Data
' model for ASP.NET Dynamic Data. Set ScaffoldAllTables = true only if you are sure
' that you want all tables in the data model to support a scaffold (i.e. templates)
' view. To control scaffolding for individual tables, create a partial class for
' the table and apply the [Scaffold(true)] attribute to the partial class.
' Note: Make sure that you change "YourDataContextType" to the name of the data context
' class in your application.
' model.RegisterContext(GetType(YourDataContextType), New ContextConfiguration() With {.ScaffoldAllTables = False})
Global.asax'ın en başında yer alan yukarıdaki gibi tamamen pasif hale getirilmiş bir paragraf yazı ve bir satır kod Global.asax'ın en başında yer alıyor. Bizim için önemli olan en alttaki kod satırı tabi ki. Bu satırı aktif hale getirerek YouDataContextType'ın yerine kendi DBML dosyamızın DataContext'ini atamamız gerek. Sonrasında da ScaffoldAllTables özelliğini False değerindenTrue'ye çevirmeliyiz. [VB] model.RegisterContext(GetType(DataClassesDataContext), New ContextConfiguration() With{.ScaffoldAllTables = True}) [C#] model.RegisterContext(typeof(DataClassesDataContext), new ContextConfiguration() { ScaffoldAllTables = true}); Şimdi tüm değişikliklerimizi kaydedelim ve projemizi çalıştıralım :) RESMİ BÜYÜK GÖRMEK İÇİN RESİME TIKLAYIN RESMİ BÜYÜK GÖRMEK İÇİN RESİME TIKLAYIN RESMİ BÜYÜK GÖRMEK İÇİN RESİME TIKLAYIN RESMİ BÜYÜK GÖRMEK İÇİN RESİME TIKLAYIN RESMİ BÜYÜK GÖRMEK İÇİN RESİME TIKLAYIN