Author: Sachin Sharma
Published On: 22 Nov 2024
Views: 27
Comments: 0

what is modular monolithic architecture,pros and cons and of modular monolithic,project structure of modular monolithic project.

Author: Sachin Sharma
Published On: 21 Nov 2024
Views: 31
Comments: 0

Here i explained what is difference between ref and out keyword in c# and how to use and where to use. both ref and out keyword used to pass parameters as reference.

c#
Author: Sachin Sharma
Published On: 21 Nov 2024
Views: 51
Comments: 0

SOLID Principles - Single Responsibility Principle (SRP), Open Closed Principle (OSP), Liskov Substitution Principle (LSP), Interface Segregation Principle (ISP), and Dependency Inversion Principle (DIP)

Author: Sachin Sharma
Published On: 08 May 2024
Views: 315
Comments: 0

Lets understand how to implement DI in middleware in dotnet core with example. Where to use interface to call functions.

Author: Sachin Sharma
Published On: 07 May 2024
Views: 203
Comments: 0

How to get last executed queries and executed queries logs in mysql with the help on general_log table and general_log_file

Author: Sachin Sharma
Published On: 25 Aug 2023
Views: 412
Comments: 0

How to bind server side data with pagination in table using jquery dataTable

Author: Sachin Sharma
Published On: 25 Aug 2023
Views: 311
Comments: 0

How to access property of dynamic object when property name is a keyword in c# dotnet core

Author: Sachin Sharma
Published On: 22 Jun 2023
Views: 318
Comments: 0

MySql - Count the number of occurrences of a string in a VARCHAR field

Author: Sachin Sharma
Published On: 18 May 2023
Views: 307
Comments: 0

Here we discuss some best practice for c# development that would help to create good software.

c#
Author: Sachin Sharma
Published On: 02 May 2023
Views: 301
Comments: 0

What is difference between var and let in javascript. Here i will detailed explain about uses of var and let in javascript.

Author: Sachin Sharma
Published On: 01 May 2023
Views: 308
Comments: 0

Here We will discuss about what is dynamic query and how to write dynamic query in Stored procedure

Author: Sachin Sharma
Published On: 01 May 2023
Views: 303
Comments: 0

What is Null conditional (?) and Null Coalescing operator (??) and how to use it in c#. ? and ?? both are used in handling null value.

Author: Sachin Sharma
Published On: 13 Apr 2023
Views: 306
Comments: 0

How to implement default method in c# interface.

c#
Author: Sachin Sharma
Published On: 13 Apr 2023
Views: 316
Comments: 0

What is Difference between Class and Structure in C#

Author: Sachin Sharma
Published On: 10 Apr 2023
Views: 314
Comments: 0

Here I will explain how to upload file in dotnet core mvc. IFormFile is used for capture transmitted file in http request.IFormFile interface also allows us to read the contents of a file via an accessible Stream.

Author: Sachin Sharma
Published On: 10 Apr 2023
Views: 332
Comments: 0

Here we will discuss about custom authentication middleware and how to configure custom authentication middleware in dotnet core.

Author: Sachin Sharma
Published On: 10 Apr 2023
Views: 335
Comments: 0

How to enable auto redirection to https in dotnet core. use app.UseHttpsRedirection(); in the method Configure in Startup.cs

Author: Sachin Sharma
Published On: 05 Apr 2023
Views: 341
Comments: 0

Here I will explain how to apply client side validation for dynamic forms in dotnet core mvc.

Author: Sachin Sharma
Published On: 05 Apr 2023
Views: 615
Comments: 0

Here i will explain how to create custom and conditional server side and client side validation like required-if in asp.net core.

Author: Sachin Sharma
Published On: 31 Mar 2023
Views: 299
Comments: 0

Custom Server and Client Side Validation in Asp.net Core ,custom unobtrusive client side validation in asp.net core, client and server side validation to check file extension.

Author: Sachin Sharma
Published On: 31 Mar 2023
Views: 317
Comments: 0

API versioning is the practice of managing changes to an API and ensuring that these changes are made without disrupting clients. we may create multiple APIs that may be consumed by many clients.

Author: Sachin Sharma
Published On: 26 Dec 2022
Views: 521
Comments: 0

Robots.txt is a text file that contains special instructions for web crawlers. his file tells crawlers which areas are allowed, and which are disallowed Robots.txt help to search engines to crawl website’s page and avoid unwanted carwler request.

Author: Sachin Sharma
Published On: 12 Dec 2022
Views: 422
Comments: 0

A sitemap is an XML file that contains all URLs of a website.When a website created dynamic pages,It's very dificult for google to crawl and index them.That's why we need sitemap XML file and inculde all the pages url in it.Its help to index them.

Author: Sachin Sharma
Published On: 06 Dec 2022
Views: 566
Comments: 0

When website deploy on server due to process failure HTTP 502.5 error occur. Generally When deploy website on server and run the website due to process failure this error occur. there can be many reason to occur HTTP 502.5 error.

Author: Sachin Sharma
Published On: 05 Dec 2022
Views: 455
Comments: 0

With the help of Bind method in configuration can map appsetting section keys to a class.

Author: Sachin Sharma
Published On: 02 Dec 2022
Views: 486
Comments: 3

Here i will explain how to Implement Jquery tagEditor plugin in dotnet core.