I have this field in the database: ID_LIBERACAO
and in my domain class I have this:
[Table("Tabela")]
public class Tabela
[Key]
[DataBaseGenerated(DataBaseGeneratedOption.Identity)]
public int IdLiberacao {get; set; }
Even with the name without the underscore, does my class mean you are referring to the table field? I deleted all underscore from field names and standardized this way. I have no way to test it until I get the client release.