| by Achyut Kendre | No comments

C# Console Programs

Addition Example : https://drive.google.com/file/d/1L9fLcXmVdIsl5FbZcZQ68raTdSm1W2fK/view?usp=sharing Condition Example: https://drive.google.com/file/d/1Teqa6alW9znLPbhQHQOh8KuN92JmoALm/view?usp=sharing Logical Operator Example: https://drive.google.com/file/d/1aAbksDCSnDYKwr2fV6KL0iAenT6Z2OeR/view?usp=sharing Nested Conditions : https://drive.google.com/file/d/1pq1ZH3h3lsMnW-pB8CKzE-wvpixyXsp4/view?usp=sharing For Loop Example 1: https://drive.google.com/file/d/13e4p7sF590uJxcnhSLDpoyohY7pnj4Vg/view?usp=sharing For Loop Example 2: https://drive.google.com/file/d/1zbl_vf4LgASLeNyePD2irI5yBWjusL_i/view?usp=sharing While Loop Example: https://drive.google.com/file/d/1ICNeE_X8TNetr0L0D9DDDVeokhDsvOP7/view?usp=sharing While Loop Example 2 : https://drive.google.com/file/d/1n6VpshG–njKsJYpoq260RsMMCx8nLwT/view?usp=sharing Do While Loop Example : https://drive.google.com/file/d/10DwyZ65TNvI65NYULZIL2SsK0RK9QoLH/view?usp=sharing Nested Loop Example 1: https://drive.google.com/file/d/1QAb4NeLFGjXhJc6dyudLBlHG7l394Xz3/view?usp=sharing Nested Loop Example 2: https://drive.google.com/file/d/11t4OyMjVyz6MJklV5Kc3xi4BIqhX1HSJ/view?usp=sharing Switch Case Example: https://drive.google.com/file/d/1Apt-3orcx09guHb9PwLQa5lUl_VIv5MW/view?usp=sharing […]

Read More
| by Achyut Kendre | No comments

Token Based Authentication using ASP.NET Core Web API.

Source Code : https://drive.google.com/file/d/1QOZzkP0dctZ1NCOB1MdTu27se18EOAlL/view?usp=sharing

Read More
| by Achyut Kendre | No comments

Curd using Web API and J Query

Source Code Link : https://drive.google.com/file/d/1nXaMS6nr5IjNIxaHxW8ykXuCCRSft3pa/view?usp=sharing

Read More
| by Achyut Kendre | No comments

Status Code in Web API Core

Source Code Link: https://drive.google.com/file/d/11UyvHbg6pfVi-J-sXrXQXRRHBonj6laT/view?usp=sharing

Read More
| by Achyut Kendre | No comments

Routing in Web API

Source Code Link : https://drive.google.com/file/d/12vAH1dGT3YohzHpgxhym0p-pE3CHU5MG/view?usp=sharing

Read More
| by Achyut Kendre | No comments

How to use View Components in ASP.NET Core

Source Code Link : https://drive.google.com/file/d/10w3XGYnS7VyW5PCv53_DejY6aiIBBxxX/view?usp=sharing

Read More
| by Achyut Kendre | No comments

How to use Sessions in ASP.NET Core?

Source Code Link : https://drive.google.com/file/d/1WmqRCDPWdODKZwfRX3zrSWytv1fI6Qah/view?usp=sharing HTTP is a stateless protocol. By default, HTTP requests are independent messages that don’t retain user values. State can be stored using several approaches. We can use any of the Session, Cookies, Hidden Fields etc. Session state is an ASP.NET Core scenario for storage of user data while the user […]

Read More
| by Achyut Kendre | No comments

Action Filter, Built in & Custom Action Filter in ASP.NET Core.

Source Code Link for Built in Filters: https://drive.google.com/file/d/13-eYsbxZDZMUiMgc0aqLquU8aQYl6uQV/view?usp=sharing Source Code Link for Custom Action Filters: https://drive.google.com/file/d/16_9Uf4Oh039lJhJVRN1EhS1cIJm7ZFq1/view?usp=sharing

Read More
| by Achyut Kendre | No comments

What is EF Core? How to use it in ASP.NET Core?

Link to download example 1: https://drive.google.com/file/d/1U3YNSJxmq70BLSb8w3QUD2fQtD6ysv6K/view?usp=sharing Link To download example 2 : https://drive.google.com/file/d/10j2OjwUkNcVQKcwqq2Ph_8rxsqYSAbsB/view?usp=sharing In this article we will learn about new ORM Entity Framework Core by Microsoft which is now a official data access platform. What is ORM? ORM is called object relation mapper. ORM links or maps the classes, properties , methods from a […]

Read More
| by Achyut Kendre | No comments

How to create custom tag helper in ASP.NET Core?

Example Code: https://drive.google.com/file/d/19iWlBIz9e_eE4Vv1tdamdNDmYFR-yK9s/view?usp=sharing The tag helper enables us to run the server-side code to generate HTML, CSS, Javascript code in Razor View. In my previous article, I have talked about tag helper, form tag helper, and other common tag helpers. In this article, I will explain how to create custom tag helper in ASP.NET Core […]

Read More