Category: Architecture

Everything about Microsoft Power Apps

Microsoft Power Apps is a suite of apps, services, and connectors, as well as a data platform, that provides a rapid development environment to build custom apps for your business needs. Whether you want to create an app from scratch, or use a template, or generate an app from your data, Power Apps has you […]

ASP.NET Core MVC(.NET6) CRUD Operations using EntityFrameworkCore

MVC stands for Model-View-Controller, it’s a software architectural pattern that separates an application into three main components: Model, View and Controller. The Model represents the data and business logic of the application, the View is responsible for rendering the data into a user interface and the Controller handles user interactions and updates the Model accordingly. […]

API & REST API

What is an API? Api is short for Application Programming Interface. It is used in computer programs to communicate with other applications and/or services.It acts as a bridge between different softwares and devices.Each time we use an app like Facebook or Instagram, send an instant message or check the weather on our phone, we use […]

SQL SERVER

Introduction to SQL Server Introduction to SQL Server SQL Server is an application software for Relational Database Management System (RDBMS), from Microsoft back in 1988, We can used it for creating, maintaining, managing, and implementing relational databases. It is actually a backend application that allows us to store and process data. It is called the […]

IMPORTANCE OF CHOOSING BEST ARCHITECTURE

Software architecture comes under design phase of software development life cycle. It is one of initial step of whole software development process. Without software architecture proceeding to software development is like building a house without designing architecture of house. So software architecture is one of important part of software application development. When we are building […]

MVC Architecture

MVC architecture  is basically designed to separate the business logic and application data from the presentation data to manage easily. MVC stands for L Model – View – Controller 1).  Model: The model object knows about all the data that need to be displayed. It is model who is aware about all the operations that […]

Move a SharePoint Content Database / Deploy sharepoint site

our Official website (https://zonixsoft.com) You have two initial options, doing a backup and restore within MOSS to move the data, or doing it at the SQL/STSADM level.  I prefer the latter, as it isn’t nearly as inclined to fail and leaves you with more flexibility. 1) Find the content Database These are listed under Central […]

New in C-Sharp 3.0

Visit: https://zonixsoft.com New in C-Sharp 3.0 New in C# 3.0 This article discusses the following major new enhancements expected in C# 3.0: • Implicitly typed local variables • Anonymous types • Extension methods • Object and collection initializers • Lambda expressions • Query expressions • Expression Trees Implicitly typed local variables: C# 3.0 introduces a new keyword called “var”. Var allows you […]

OOPS Concepts and .NET Part 2 Inheritance, Abstraction, Polymorphism

Summary The following article is the second of a three-part article series that presents definitions and samples for different Object-Oriented Programming (OOP) concepts and its implementation in .NET. The first part examined the concepts of classes, objects, and structures. This part examines the concepts of inheritance, abstraction, and polymorphism. The third and last part will […]