Hello Folks, I have been always writing some basic sort of examples on CRM scripting / SDK. This time I have brought down this to .NET core feature called “Entity Framework” versus “CRM SDK”. This article is useful is people who are quite familiar with LINQ but are new to CRM entity classes. Let’s take a look at the code comparisons below: .NET Entity Framework Example: SQL Table: Student id int name varchar(300) marks int Now when we generate the .NET Entity Model using .edmx file. We will see th...