I did not find anything suitable, so I created a very simple TSQL script. Here is the gist .
Output Example:
public class EmployeeDto { public int Id { get; set; } public int AccountId { get; set; } public string ExternalId { get; set; } public string EmailAddress { get; set; } public bool IsActive { get; set; } public string UniqueId { get; set; } public bool IsBuiltIn { get; set; } public string LastName { get; set; } public string FirstName { get; set; } public string MiddleName { get; set; } public bool IsAuthorizedOnAllDepartments { get; set; } }
evgeny.myasishchev
source share