Satish Yadavread.satishyadav.com·Oct 11, 2018How to Scaffold Controllers with database views to EF Core 2.1How to Scaffold Controllers with database views to EF Core 2.1 Create a view in the database. Create a POCO with the same structure as the view. Add a new Controller with POCO created in step#2 a. If key related error occurs, add a Key attribute o...Discussentity framework
Harsh Mangeharshmange.hashnode.dev·Apr 28, 2023Choosing Between Table and View: Factors to ConsiderWhen designing a database, it is important to decide whether to use a table or a view for storing and querying data. Here are some guidelines to help you make the decision: A table is best used when: You need to store data permanently. The data is ...Discuss·28 readsview
Harsh Mangeharshmange.hashnode.dev·Apr 18, 2023Understanding the Fundamental Differences Between Database Views and TablesA table and a database view are both database objects used to store and organize data in a database management system (DBMS), but they have some fundamental differences in terms of their purpose, structure, and functionality. A table is a basic datab...DiscussDatabases
Charles Muchenecharlesmuchene.com·Apr 17, 2023Composite PatternThe composite design pattern allows us to create a tree structure of objects. The key idea with the pattern is that given a root component, we can access all nodes in the structure. Such access is granted using a common interface that refers to eithe...Discuss·190 readsAndroid
Saira Abdullasaira.hashnode.dev·Sep 17, 2022Understanding the MVC pattern.What is MVC? MVC stands for Model-View-Controller and is a popular and widely used software architecture pattern. Why do we need software architecture? Software architecture can be considered the blueprint for developing software. It helps us in unde...Discuss·2 likes·62 readsmvc
Dave Kdavek.dev·Oct 27, 2014C# Visual Object Explorer DialogOften, when building visual applications I find that as I build the applications in stages, there are often times when I’d like to be able to quickly view what data is in the application memory without having to build the UI and link the data to a se...Discuss·70 readsTalking I.T. Throughsoftware