Subscribe to:
Post Comments (Atom)
Asp.net Core Continued
65 66 67 68 69 70 71 65 ASP.NET Core Identity It is a membership system Step 1 : Inherit from IdentityDbContext class instead of ...
-
Extension methods: - Introduced in C# 3.0 - It is a mechanism of adding new methods into an existing class or structure without modifyin...
-
Singleton Design Pattern 1. Class in sealed (sealed will prevent the class inheritances(even if child child is nested class)) 2. Constru...
-
Nth Highest salary 1. Select Max(Salary) from Employees where Salary < (Select Max(Salary) from Employees) 2. SELECT TOP 1 SALARY F...

No comments:
Post a Comment