Following Structure of Solution Explorer Visual Stdio 2015 display in image:
Explain in Short:
- App_Data folder - Holds the SQL Server Compact database file.
- Content - Holds CSS files.
- Controllers - Holds controller classes.
- DAL folder - The data access layer. Holds the context, initializer, repository, and unit of work classes.
- Logging folder - Holds code that does logging.
- Migrations folder - Holds EF Code First migrations code, including the Seed method.
- Models folder - Holds model classes.
- Properties or MyProject folder - Project properties.
- Scripts folder - Script files.
- ViewModels folder - Holds view model classes.
- Views folder - Holds view classes.
- Visual Studio project file (.csproj or .vbproj).
- Packages.config - Specifies NuGet packages included in the project.
- Global.asax file - Includes database initializer code.
- Web.config file - Includes the connection string to the database.
Hope you like it.
Stay tuned for more..
Comments
Post a Comment