using static System.Console;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
public static void Main() {
foreach (var c in GetColumns()) WriteLine(c);
private static IEnumerable<string> GetColumns() => typeof(Usuario).GetProperties()
.Where(e => e.Name != "Id" && !(Attribute.GetCustomAttribute(e, typeof(NotMappedAttribute)) is NotMappedAttribute))
public string Nome { get; set; }
public string Login { get; set; }
public string Password { get; set; }
public string ConfirmPassword { get; set; }