How can i generate a class from a table at a SQL Server?
I'm not talking about using some ORM. I just need to create the entities (simple class). Something like:
public class Person
{
public string Name { get;set; }
public string Phone { get;set; }
}