.NET Flashcards
What is ADO.NET?
What is Entity Framework?
Is ADO.NET quicker or faster than Entity Framework?
What is the purpose of ASP.NET?
What is an MVC?
Model. View. Controller
It is a pattern in software design used to implement user interfaces, data, and controlling logic. It emphasizes a separation between the software’s business logic and display.
What are middlewares?
What is EF Core / ORM?
What is the difference between an .exe and a .dll?
.exe file is the executable file loads the .dll file.
.dll file is the dynamic link library file that loads at runtime.
What is a controller and what is its purpose?
What the heck is CORS?
Cross-Origin Resource Sharing allows restricted resources on a web page to be requested from another domain.
CORS is an HTTP-header based mechanism that allows a server to indicate any origins (domain, scheme, or port) other than its own from which a browser should permit loading resources. CORS also relies on a mechanism by which browsers make a “preflight” request to the server hosting the cross-origin resource, in order to check that the server will permit the actual request. In that preflight, the browser sends headers that indicate the HTTP method and headers that will be used in the actual request.
What is ASP.NET?