I googled CLR and found out what it is from wikipedia, but I wanted to know what a CLR class or more specifically a CLR entity type is (especially in ASP.NET).
CLR is Common Language Runtime not a class.
The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework and is responsible for managing the execution of .NET programs. In a process known as just-in-time (JIT) compilation, the CLR compiles the intermediate language code known as CIL into the machine instructions that in turn are executed by the computer's CPU. The CLR provides additional services including memory management, type safety and exception handling. All programs written for the .NET framework, regardless of programming language, are executed by the CLR. It provides exception handling, Garbage collection and thread management.
Check this link
You are probably talking about CLR objects / POCO objects - Plain Old CLR objects.
Look here: POCO vs DTO
Look here about working with POCO entities - Working with POCO Entities
CLR refers to Common Language Runtime, while class refers to a strongly typed data instance. The CLR is responsible for amongst many other things, managing the memory of your class instances.
CLR is not class. The Common Language Runtime (CLR) is the virtual machine component of Microsoft's .NET framework . This runtime environment in .NET Framework is known as Common Language Runtime (CLR).
image from wiki which explain what clr can do
CLR provides the following benefits for developers:
Read more : http://www.codeguru.com/forum/showthread.php?t=369619