TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Harshad Tretiya(12)
Jitendra Mesavaniya(8)
Abhishek Yadav(6)
George (3)
Raj Bhatt(3)
Alpesh Maniya(2)
Mariusz Postol(2)
Vikas Singh(2)
Ishika Tiwari(2)
Vishal Yelve(2)
Keyur (2)
Madhu Patel(2)
Sanjay Mrinal Kumar Kodangi(2)
Nikunj Satasiya(2)
Konstantin Triger(2)
Rasul Huseynov(1)
Muhammad Talha(1)
Abhishek Chadha(1)
Chetan Sanghani(1)
Ashutosh Singh(1)
Ayush Gupta(1)
Sanwar Ranwa(1)
Allani Saikumar(1)
Naveen Kumar(1)
Aman Patel(1)
Jaimin Shethiya(1)
Arun Potti(1)
Ajay Kumar(1)
Shivam Payasi(1)
Tural Suleymani(1)
Mithilesh Tata(1)
Jignesh Kumar(1)
Vijay Pratap Singh(1)
Dinesh Gabhane(1)
Sardar Mudassar Ali Khan (1)
Jobin S(1)
Ramawatar Bhakar(1)
Jefferson S. Motta(1)
Ravi Raghav(1)
Ajay Singh(1)
Sachin Mishra(1)
Shreneek Patil(1)
Priyanshu Agnihotri(1)
Salman Karim(1)
Fuad Hasan(1)
Bhavesh Raval(1)
Yogeshkumar Hadiya(1)
Jin Necesario(1)
Sumit Singh Sisodia(1)
Mahesh Chand(1)
Vitalii Honcharuk(1)
Mahender Pal(1)
David Mccarter(1)
Rajendra Prasad(1)
Nanddeep Nachan(1)
Shivam Tiwari(1)
Onkar Sharma(1)
Munib Butt(1)
Hamid Khan(1)
Evgeniy Gribkov(1)
Miguel Teheran(1)
Rikam Palkar(1)
Abhishek Duppati(1)
Resources
No resource found
Using Find Instead of FirstOrDefault with Collections in C# .NET
Jul 15, 2024.
When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Find is optimized for List<T>, offering potentially better performance in list operations.
Understanding LINQ While Writing Your Own
Jul 03, 2024.
LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
Mastering LINQ: TakeWhile and SkipWhile in C# .NET
Jul 01, 2024.
Explore LINQ's TakeWhile and SkipWhile methods in C#, which enhance data querying by conditionally including or excluding elements based on predicates. Learn how to use these powerful methods to process collections effectively, with detailed examples demonstrating their functionality and practical applications.
Optimizing LINQ Queries in C# and .NET Core Web APIs
Jun 21, 2024.
LINQ in C# optimizes data querying with readable syntax, but inefficient use can impact .NET Core Web API performance. Strategies like early filtering and selective projections enhance efficiency. Deferred execution via IQueryable delays query execution, optimizing database interactions.
Lazy Loading (4): EntityFramework
Jun 21, 2024.
This article will discuss lazy loading in Entity Framework. This article series explores Lazy Loading, focusing on its application in various technologies like LINQ, HTML, JavaScript, Entity Framework, and Angular, providing insights and performance considerations.
LINQ vs PLINQ Method Syntax for Efficient C# .NET Data Processing
Jun 17, 2024.
LINQ (Language Integrated Query) and PLINQ (Parallel LINQ) are .NET frameworks for querying data. LINQ offers a declarative syntax for querying various data sources with single-threaded execution, while PLINQ extends LINQ by enabling parallel execution.
The Art of JavaScript Hoisting: Understanding the Ins and Outs
Jun 11, 2024.
Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
C# Comparison Fundamentals: Best Practices and Tips
Jun 11, 2024.
Comparison operations are a fundamental aspect of programming in C#. Whether you're comparing primitive types, strings, or objects, or handling null values, understanding the nuances of comparison can enhance both the performance and readability of your code.
Advanced SQL Techniques in PostgreSQL
Jun 07, 2024.
PostgreSQL, a powerful open-source relational database management system, offers a wide range of features and functionalities to handle complex data queries and manipulations efficiently.
Understanding Single, SingleOrDefault, First, and FirstOrDefault in LINQ .NET C#
Jun 07, 2024.
LINQ (Language Integrated Query) provides powerful querying capabilities in C# to manipulate data collections. Among its arsenal of operators, Single, SingleOrDefault, First, and FirstOrDefault are frequently used to retrieve elements from sequences.
LINQ Query Syntax vs Method Syntax in Entity Framework
May 29, 2024.
Choosing between LINQ Query Syntax and Method Syntax in Entity Framework depends on various factors. Query Syntax often resembles SQL, making it more intuitive for those with SQL background, while Method Syntax offers more flexibility with lambda expressions and method chaining.
Lazy Loading (2): HTML
May 29, 2024.
This series explores Lazy Loading within the LINQ category, focusing on dynamically loading images in HTML to enhance page load times, featuring code examples and demos for practical application.
SQL: Not Using Aggregate Function in WHERE Clause, instead, Using HAVING Clause
May 28, 2024.
This article will discuss the issue that SQL: Not Using Aggregate Function in WHERE Clause, instead, Using HAVING Clause
Log-Based vs. Pre-Aggregate in Data Analytics
May 27, 2024.
Log-Based vs. Pre-Aggregate in Data Analytics: Log-based analytics processes raw data entries sequentially, while pre-aggregate analytics aggregates data beforehand. Each approach offers unique benefits in query performance, granularity, and real-time insights, catering to diverse analytical needs.
Multiple OrderBy Operations in Entity Framework
May 27, 2024.
Entity Framework (EF) is a powerful ORM (Object-Relational Mapper) in .NET that allows developers to work with databases using .NET objects. In EF, this can be achieved using OrderBy, ThenBy, OrderByDescending, and ThenByDescending methods in LINQ queries.
Explain RxJS Aggregate Operators
May 21, 2024.
RxJS offers powerful aggregate operators such as count, reduce, max, min, scan, and toArray, enabling complex data transformations and aggregations on observable values for reactive programming in Angular.
Data Pagination with Extension Methods in C#
May 20, 2024.
Pagination is a common technique used to manage and display data in chunks. This article discusses implementing pagination in C# using extension methods, which allow adding new functionality to existing types without modifying their source code, making data handling clean and reusable.
Programming in Practice - Structural Data
May 19, 2024.
In object-oriented programming, the basic way to create structural data is to define custom types and interconnect them using references. Let's analyze this case using sample code in the context of intentionally programmed relationships between items.
Unlocking Performance: Exploring PLINQ in .NET C#
May 08, 2024.
In today's computing landscape, where multi-core processors are ubiquitous, optimizing the performance of your applications often involves leveraging parallelism. One powerful tool in the .NET developer's arsenal for achieving parallelism is PLINQ - Parallel Language-Integrated Query.
Programming in Practice - LINQ Expression
May 06, 2024.
An impression can be made that: data is data, and it doesn't matter where it comes from provided it is reliable. The LINQ technology is presented to fetch the necessary data from any available source. After reading the full story forget about ChatGPT and MSDN in the context of LINQ to make your life easier.
Convert Rows to CSV & Eliminate Duplicates in SQL Server
May 06, 2024.
Using SQL Server's string aggregate function, efficiently transform row data into a comma-separated format, while simultaneously removing any duplicate entries, ensuring data integrity and optimization.
Database Connectivity in Visual Studio
May 03, 2024.
Visual Studio facilitates robust database connectivity through technologies like ADO.NET and Entity Framework. Developers can seamlessly integrate with SQL Server, MySQL, Oracle, and more using connection strings and data source management tools.
Single, SingleOrDefault, First, and FirstOrDefault in Linq .NET C#
Apr 30, 2024.
LINQ's element operators like Single, SingleOrDefault, First, FirstOrDefault, Last, and LastOrDefault provide specific functionalities for retrieving elements from collections in C#. Here's how to use them effectively.
How to Integrate Instant Plugins in the Canvas App?
Apr 29, 2024.
Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
Entity Framework Core: Features, Real-time Implementation, Best Practices
Apr 29, 2024.
Entity Framework Core (EF Core) stands as a powerful toolset for .NET developers, streamlining the interaction between applications and databases through object-relational mapping (ORM). Whether adopting a database-first or code-first approach, EF Core simplifies data access and manipulation.
Explain Lambda Functions in .NET C#
Apr 26, 2024.
In the realm of .NET programming, lambda functions represent a powerful and concise way to define anonymous methods or functions. In this article, we'll explore the fundamentals of lambda functions in .NET, understand their syntax and usage, and uncover their practical applications in real-world scenarios.
C# Programming: Language Fundamentals, OOP, Async, LINQ
Apr 25, 2024.
This guide provides a thorough exploration of the C# language, covering essential topics such as language fundamentals, object-oriented programming concepts, asynchronous programming, and Language Integrated Query (LINQ).
LINQ in C#: Knowing When to Use First() vs FirstOrDefault()
Apr 24, 2024.
LINQ, a cornerstone of C#, empowers developers to query data across various sources efficiently. This guide delves into the nuanced differences between First() and FirstOrDefault(), aiding in crafting resilient and optimized code.
Difference Between Scalar and Aggregate Functions
Apr 19, 2024.
In this article, we'll discuss the differences between Scalar and Aggregate functions in MSSQL in detail. This article explores scalar and aggregate functions in Microsoft SQL Server, detailing their differences and usage with examples for clarity.
MySQL Queries Cheat Sheet
Apr 18, 2024.
In this article, we will learn about MySQL querying essentials, covering basic SQL commands, data manipulation functions, constraints, and frequently asked questions, providing valuable insights for both novice and experienced developers.
New LINQ Methods in .NET 9 Preview
Apr 14, 2024.
While the release of .NET 9 is planned for November 2024, the preview version is already available. One of the new .NET 9 features is the new LINQ methods: CountBy, AggregateBy, and Index. In this article, I present how to use these methods.
Functional programming in C# - Introduction
Apr 02, 2024.
Lets learn the concept of functional programming, its usage and why functional programming is important
What is Language Integrated Query in C#?
Mar 29, 2024.
Know about LINQ (Language Integrated Query) in C# and their benefits. In this article, we have explained LINQ with an example.
Exploring .NET 6's MinBy() and MaxBy() Extension Methods
Mar 22, 2024.
In this article, I will demonstrate the exciting new additions to LINQ extension methods introduced in.NET 6: MinBy() and MaxBy(). Let's explore how these powerful methods simplify code, providing efficient solutions for selecting extreme values within a generic sequence.
Leveraging Compiled Queries for Enhanced Performance in LINQ
Mar 09, 2024.
Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
Misconceptions About the Four LINQ methods
Mar 09, 2024.
Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault(), First(), and FirstOrDefault(). Clarifying differences and potential pitfalls helps prevent null references and invalid operator exceptions in code.
What is New in .NET 9
Mar 04, 2024.
.NET 9, succeeding .NET 8, places particular emphasis on cloud-native applications and enhancing performance. It will receive standard-term support (STS) for 18 months.
Why we should learn C#?
Feb 26, 2024.
This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
Sorting Arrays in C#
Nov 24, 2023.
This article guides us through sorting arrays in C# using the Array.Sort() method and LINQ queries. It covers both ascending and descending orders, providing code snippets for clarity.
Difference Between Concurrency and Parallelism in C#
Nov 09, 2023.
The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts and provides clear examples and use cases for each. The discussion of best practices and considerations for managing concurrency and parallelism effectively is a valuable addition, as it helps developers avoid common pitfalls and make informed decisions when implementing these concepts in their applications.
ASP.NET Core Web API with 3-Tier Architecture and Iterator Pattern
Oct 19, 2023.
The Iterator Pattern is a behavioral design pattern that provides a way to access elements of a collection sequentially without exposing its underlying representation. It defines an interface for accessing the elements of a collection and keeps track of the current position within that collection.
Understanding LINQ in C#: Query Syntax and Method Syntax
Oct 03, 2023.
This article is an informative and in-depth exploration of LINQ (Language Integrated Query) within the context of C#, a widely used programming language in the software development industry. The guide delves into both the query syntax and method syntax aspects of LINQ, providing readers with a thorough understanding of how to effectively use LINQ to query and manipulate data in C# applications.
Understanding LINQ in .NET
Sep 11, 2023.
LINQ, or Language Integrated Query, is a powerful feature in the .NET framework that simplifies data querying and manipulation in C# and VB.NET applications. It provides a uniform and SQL-like syntax for querying data from various sources, including in-memory collections, databases, XML, and more.
Exploring the Diverse Flavors of LINQ with Examples
Aug 22, 2023.
LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
Using the OrderBy and OrderByDescending Operator in LINQ
Aug 08, 2023.
Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
Learn About Programming Logic And LINQ
Jul 25, 2023.
In this article, you will learn about the basics of programming logic.
EF Core in .NET 7 API
Jul 13, 2023.
Using EF Core in .NET 7 API
C# LINQ With Select and SelectMany Operator
Jul 10, 2023.
C# LINQ with select and select many operator
How To Use MAX() Function In MySQL
Jun 26, 2023.
the MAX() Aggregate function is used to return the highest value in a set of values in the column. This Aggregate function can be used in various scenarios such as finding the maximum price of a product, the highest score in a test, or the most recent date in a table with the help of the MAX() Aggregate function.
LINQ Methods
Jun 16, 2023.
Linq Methods
Difference between IQueryable, IEnumerable, IList and List
Jun 12, 2023.
when to use what IQueryable, IEnumerable, IList and List
How To Use AVG Function In MySQL
May 10, 2023.
The AVG function in MySQL calculates the average of a selected group of values.
How To Use Aggregate Functions In MySQL
Apr 26, 2023.
Aggregate functions are functions that perform calculations on groups of rows in a database and return a single result. They are commonly used in SQL to summarize data and calculate statistics. Here are some commonly used aggregate functions in SQL:
Embracing Event Sourcing in .NET 6: Design, Implementation, and Best Practices
Apr 26, 2023.
How to Use Aggregate Functions in SQL Server?
Apr 20, 2023.
How To Use SUM Function In MySQL
Apr 18, 2023.
In this, I explain how to use the SUM() Function in MySQL
LINQ (Language Integrated Query)
Jan 31, 2023.
In this article, you will learn about LINQ (Language Integrated Query).
Find Blank Column Using LINQ In UiPath
Jan 03, 2023.
In this article, you will learn how to find blank column Using LINQ in UiPath.
Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefault
Nov 28, 2022.
In this article, you will learn about the Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefault.
Reverse Words In A String In C#
Nov 07, 2022.
Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
How To Add Custom Add-Ins To MS Word
Oct 07, 2022.
This article shows you how to add add-ins to word desktop.
How To Add Add-Ins In PowerPoint
Sep 20, 2022.
In this article, you will learn how to add custom add-ins.
LINQ Partitioning Operators - Take, TakeWhile, Skip & SkipWhile
Sep 13, 2022.
Take, TakeWhile, Skip and SkipWhile are called Partitioning Operators and we’ll discuss and investigate them. Not only that we’ll also see an equivalent loop construct to appreciate where these operators derived.
How To Deploy Excel Add-ins To Your Organization
Aug 12, 2022.
This article show you how to deploy excel add-ins in your organization.
How To Add Custom Add-Ins To Excel
Jul 05, 2022.
In this article, you will learn how to add Excel add-ins.
How To Deploy PowerPoint Add-ins To Your Organization
Jun 15, 2022.
This article shows you, how to deploy PowerPoint add-ins.
How To Deploy Word Add-Ins To Your Organization
Jun 03, 2022.
This article show you how to deploy word add-ins to your organization.
How To Create Excel Add-Ins?
May 10, 2022.
Create an Excel add-in using HTML, CSS, JavaScript, or C# to enhance functionality across various platforms, including Excel for Windows, Mac, and Office 365. Install Yeoman and the generator-office globally, generate a project, and run it using npm commands. Test your add-in in Excel’s Home Tab.
How To Create PowerPoint Add-Ins
Apr 04, 2022.
in this article, I will show you how to create PowerPoint Add-ins
How To Deploy Outlook Add-ins To Your Organization
Mar 19, 2022.
This article provides a comprehensive guide on deploying Outlook add-ins to organizations for other users. It covers the step-by-step process of deploying add-ins using Office 365, ensuring easy access for users within the organization.
How To Publish Outlook Add-Ins Using Visual Studio Code
Mar 17, 2022.
In this article, you will learn how to publish outlook add-ins using visual studio code.
How To Create Word Add-Ins
Mar 16, 2022.
This article outlines the steps to create and run a Word add-in using technologies like HTML, CSS, JavaScript, and C#. Word add-ins enhance functionality and work across platforms, including Windows, Mac, and Office 365.
Awesome LINQ Features In .Net 6
Feb 21, 2022.
In this article, you will learn about awesome LINQ features in .Net 6.
Awesome LINQ Impovements In .NET 6.0
Jan 20, 2022.
These are the articles for to show the LINQ improvements in .NET 6.
How to Convert an Array to a List in C#?
Jan 13, 2022.
Converting an array to a list in C# involves transforming the data structure from an array, which has a fixed size, into a list, which can dynamically adjust its size. This process is essential when flexibility in modifying the collection is needed. In C#, this can be achieved using the `ToList()` method provided by LINQ (Language Integrated Query) or by using the `List<T>` constructor, passing the array as an argument. Both approaches enable seamless conversion, allowing for easier manipulation and utilization of the collection's elements. This guide provides insights into the step-by-step process of converting an array to a list, emphasizing its utility and demonstrating practical use cases.
Advanced Entity Framework Core - Output EF SQL Queries To The Console And Tips To Setup Dbcontext With The Development In Mind
Jan 10, 2022.
When you work with abstractions over SQL Database you may be wondering what does Entity Framework constructs from your Linq queries. To get a clue on it here are 3 options. Tips to setup DbContext with the development in mind for development purposes, you may sometimes decide to use an in-memory database for all environments including production, you may set up HealthChecks, below shows how to add health checks for the DbContext also for the development environment good to have set o.EnableDetailedErrors(); and o.EnableSensitiveDataLogging(); ?to manipulate with all these options you may consider adding configuration options
Creating Aggregated View Using DataTable
Dec 14, 2021.
In this article we are doing to discuss how we can use Data Tables to create custom html view for Dynamics 365 CE
Collection Performance - How Do You LINQ?
Dec 04, 2021.
In this article, you will learn how do you LINQ?
How To Create Outlook Add-ins
Nov 24, 2021.
Creating Outlook add-ins involves using tools like VSTO or Office JavaScript API, programming in C# or JavaScript, and customizing UI elements like ribbons and task panes. Deployment via Office Store and ensuring security are key considerations.
How To Evaluate Variables On The Basis Of Dependent Variables In R
Jan 29, 2021.
In this article, I am going to demonstrate how to evaluate variables as a function of two dependent variables from a dataset together in a model.
How To Implement Models Together With Variables And Dependencies In R
Jan 28, 2021.
In this article I am going to demonstrate how to add variables and dependencies between variables from dataset together in a model.
Calculate The SUM Of The DataTable Column In C#
Jan 25, 2021.
In this article, I am going to explain how to calculate the sum of the DataTable column in ASP.NET using C#. Here, I'll also explain what a DataTable is in C#, as well as different kinds of ways to calculate the sum of the DataTable column, like using the compute method of a DataTable as well as using LINQ.
How To Represent Variables As Function For Model In R
Jan 21, 2021.
In this article I am going to demonstrate how to select and represent relevant variables as a function for a model in R.
How To Insert Multiple Variables For A Model In R
Jan 21, 2021.
In this article I am going to demonstrate how to insert relevant variables from dataset for a model in R.
How To Remove Unnecessary Variables For A Model In R
Jan 20, 2021.
In this article I am going to demonstrate how to remove irrelevant variables from dataset for creating a model in R.
How To Evaluate Dependency Among Variables In R
Jan 20, 2021.
In this article I am going to demonstrate how to evaluate dependency between variables from dataset.
ASP.NET Web API 2 In MVC 5 Using C# With Example
Jan 11, 2021.
in this article, I am going to explain how to create and access the Web API 2 in the ASP.NET MVC 5 application using C# and bootstrap with Example. Here I'll also show you how to create the step by step Web API 2 in ASP.Net MVC 5 Using C# and bootstrap with the simple example, In this tutorial, you will use ASP.NET Web API 2 to create a web API and that returns a list of employees.
How To Convert List <DataTable> Into DataSet
Dec 29, 2020.
Retrieve employee details from database using stored procedure. Group data by department with LINQ. Export List<DataTable> to Excel with multiple spreadsheets. Bind List<DataTable> to GridView for display. Assistance needed for implementation.
Overview Of Yeoman Generator For Office Add-ins
Dec 08, 2020.
Discover how to streamline Office Add-in development using Yeoman Generator. This overview covers setup, tools, and JavaScript API integration for efficient creation of custom Office solutions.
Simple Insert And Select (CRUD) Operation Using .NET Core MVC With ADO.NET And Entity Framework Core
Nov 28, 2020.
Learn to perform basic CRUD operations in .NET Core MVC using both ADO.NET and Entity Framework Core. Build a robust data access layer for seamless integration with your web application.
MySQL Functions
Oct 05, 2020.
In this tutorial, I have described various MySQL Functions in detail with various examples.
Standards In Defining The AutoMappers
Oct 04, 2020.
This article describes the tips or standards in defining mapping profiles.
Using LINQ Expressions In C#
Sep 18, 2020.
In this article, you will learn how to use LINQ Expressions in C#.
LINQ Queries
Sep 02, 2020.
In this article, you will learn about LINQ Queries.
Optimizing LINQ Queries In C#.NET For MS SQL Server
Aug 13, 2020.
Learn how to optimize LINQ queries for SQL Server performance using Entity Framework. Understand the importance of generating efficient SQL queries and avoid common pitfalls. Explore techniques like JOIN and UNION for improving query efficiency. Utilize tools like SQL Complete for query history and formatting.
JavaScript Functions vs LINQ C#
Jul 05, 2020.
This is a comparison between Javascript functions and LINQ in C# for collections.
IQueryable vs IEnumerable
Jun 22, 2020.
IQueryable vs IEnumerable" explores the differences between these two interfaces in C#. IQueryable is suitable for building dynamic queries against a database, allowing deferred execution and optimized query translation.
Multi-Select Dropdown With Checkboxes Using jQuery In MVC
Jun 09, 2020.
This article is about creating a multi-select dropdown with CheckBoxes in MVC by using Jquery on a country sample data. This kind of scenario is taken on applications such as on insurance domain. When a customer needs to be provided with travel or health insurance from the origin to the destination country, or if the person is traveling to multiple destinations.
EF Core - SELECT DISTINCT on a Few Columns Only
Apr 26, 2020.
In this article, you will learn about implementing EF Core - SELECT DISTINCT on selected columns only.
Efficient Data Modification with Entity Framework Core
Apr 16, 2020.
In this article, you will learn about efficient data modification with Entity Framework Core.
About Aggregate-in-LINQ
NA
OUR TRAINING