.Net Core Web Development

We have chosen .Net core as a primary platform for our development services and products. .Net core delivers a desirable framework for data because it integrates logical development workflows that when embraced offer a robust set of tools and configuration options that make development smooth and fast. With the release of .net 5, Microsoft has packaged together a fully open-source platform for developers to build out fast, reliable, scalable and performant data applications. In addition, time saving features built-in that make it possible to bring concept to market much faster.

.Net allows developers multiple entry points of development. .Net web applications work on the concept of modeling and manipulating data through “Models, Views, and Controllers” (MVC


PineappleA model is a defining representation over an object or a collection of objects. Models contain data objects that have data types which are representations of strings of text, numbers, abstract numbers and custom objects that define something unique in a specific defined way. While data types tend to be limited to numbers, strings of text, and true or false scenarios, they can also be more abstract data objects like images, sound files, video and other object types. The model defines what data is relevant to an application and its processes utilize models to define unique characteristics. Take a person, for instance. A person has unique traits similar but different to all people that can be described commonly. A person can have many traits but demographically are some that are most common like: First Name, Last Name, Date of Birth, Email Adress, and Gender (just to name a few). Models are crucial to software development because they help us define what data we are going to collect and for what purpose.

PineappleViews in .Net core are simply how we wish to outline or visually provide data for our human users to easily consume visually. Views take data from transactions, collections, and data sources and provide a user with an easy-to-read view of the data in context. Views are the Graphical User Interface of a .Net application and serve as the literal interaction point of a web applications user. A web application user will interact with links, forms, buttons, and other objects that make up the graphical user interface in a way that was intended by the developer to provide the necessary means and functionality. View are used in conjunction with one another to create workflows in the context of data models.

Controllers are where functionality is defined between a model and a view. Models provide data to controllers so code within controllers and take the data a input and process it to an output. Controllers also hep developers define process while collecting data and returning data to and from a user and the users view of the context of that data.


By combining Models, Views, and Controllers .Net offers a well suited means to define, manipulate, and control data. It is the capability that make .Net Versatile and desirable amongst developers and businesses.