Wednesday, 25 September 2019

int.Parse() and int.TryParse()

 What is the difference between int.Parse() and int.TryParse() ?the int.Parse() and int.TryPrase() methods is used to convert a string representation of number to an integer.  In case of the string can’t be converted the int.Parse() throws an exceptions where as int.TryParse() return a bool value, false.string text = "500";string text2 = "dotnet";int r...
Continue Reading →

Sunday, 9 June 2019

Continuous Deployment In DevOps

What is Continuous Deployment in DevOps? Continuous delivery is an automated deployment pipeline with automated and manual gates in between whereas Continuous Deployment is the continuous delivery pipeline with no manual gates in between. So, Continuous Deployment need not be a ‘Release to Production’....
Continue Reading →

Continuous Delivery In DevOps

What is Continuous Delivery in DevOps? Continuous delivery is the important process of delivering the software/Updates to production in smaller increments, ensuring that the software can be released at any time. With this approach of DevOps, the team will be always ready on ‘Delivering any time’ to...
Continue Reading →

Continuous Integration In DevOps

What is Continuous Integration in DevOps? Continuous integration -> CI ->set of processes ->Build pipeline/CI Pipeline Continuous Integration, shortly called ‘CI’ in DevOps is an important process or a set of processes which is defined and carried out as a part of a pipeline called ‘Build...
Continue Reading →

Wednesday, 5 June 2019

DevOps: Complete Beginners Training

What is DevOps? DevOps is a culture which promotes collaboration between Development and Operations Team to deploy code to production faster in an automated & repeatable way. The word 'DevOps' is a combination of two words 'development' and 'operations.'   DevOps is a software development...
Continue Reading →

Tuesday, 4 June 2019

ADFS | SSO Solution

Active Directory Federation Services (ADFS) is a Single Sign-On (SSO) solution created by Microsoft. As a component of Windows Server operating systems, it provides users with authenticated access to applications that are not capable of using Integrated Windows Authentication (IWA) through Active Directory (AD). Developed to provide flexibility, ADFS gives organizations the ability to control their...
Continue Reading →

Friday, 15 February 2019

Normalization of Database

What is Normalization in SQL ? Normalization is the process of efficiently organizing data in a database. There are two goals of the normalization process: eliminating redundant data (for example, storing the same data in more than one table) and ensuring data dependencies make sense (only storing...
Continue Reading →

Thursday, 14 February 2019

Array And ArrayList

Difference Between Array And ArrayList In C# Array An Array is a collection of data items of the same type. An Array is reference type so memory for the array is allocated on the heap. We can initialize an Array using the "new" operator and by specifying the type and number of elements inside the...
Continue Reading →

Wednesday, 23 January 2019

Agile Methodology

What is Agile methodology in project management? Agile is a process by which a team can manage a project by breaking it up into several stages and involving constant collaboration with Client and Developers at every stage. The Agile methodology begins with clients describing how the end product will be used and what problem it will solve. This clarifies the customer’s expectations to the project...
Continue Reading →

Sunday, 20 January 2019

Angular CRUD Operation- Step by step

Here in this tutorial, I am assuming that you have basic knowledge of Angular 2 or higher version. In this tutorial I am creating a simple demo with crud operation using Angular as frontend and Webapi as backend. In the previous tutorial I already created Api layer Click here. So here I'll create step...
Continue Reading →

Topics

ADFS (1) ADO .Net (1) Ajax (1) Angular (47) Angular Js (15) ASP .Net (14) Authentication (4) Azure (3) Breeze.js (1) C# (55) CD (1) CI (2) CloudComputing (2) Coding (10) CQRS (1) CSS (2) Design_Pattern (7) DevOps (4) DI (3) Dotnet (10) DotnetCore (20) Entity Framework (5) ExpressJS (4) Html (4) IIS (1) Javascript (17) Jquery (8) jwtToken (4) Lamda (3) Linq (10) microservice (4) Mongodb (1) MVC (46) NodeJS (8) React (10) SDLC (1) Sql Server (32) SSIS (3) SSO (1) TypeScript (3) UI (1) UnitTest (2) WCF (14) Web Api (16) Web Service (1) XMl (1)

Dotnet Guru Archives