- Joined
- Jul 18, 2019
LINQ is standardized way of querying structured data, whether it comes from some kind of abstract data structure in-memory, a file, a database etc. It's usually used for databases though and it gives you a portable way to query data no matter what your underlying database is.Could someone explain what LINQ and ASP.NET are used for in C#?
ASP.NET is the standard framework for web applications in C#. It does things like MVC, dependency injection, cloud configuration etc.
Basically if you're a backend web dev in C# land, you'll be writing web services in ASP.NET and using LINQ in those codebases to talk to some kind of persistence layer like a database.
Last edited: