The ADO.NET Entity Framework (EF) is .NET's built-in Object-Relational Mapping (ORM) tool. Either natively or through third-party libraries, it supports most major RDBM products including SQL Server, MySQL, Oracle, PostgreSQL and SQLite. It also supports Microsoft's "LINQ" syntax and lambda-expressions via the LINQ to Entities library.
Visual Studio provides design-time support for EF. It includes GUI tools for model-to-database and database-to-model generation. The .NET Text Template Transformation Toolkit (T4) or text-templating libraries are leveraged to generate entity classes, and this code generation is customizable in various ways from within Visual Studio.