Skip to content

[Table] attribute fix

Latest

Choose a tag to compare

@dualbios dualbios released this 02 Jun 07:23
· 2 commits to main since this release

Fix using the [Table] attribute to specify the name of the database table that the entity should map to.

[Table("Places")]
public class Place
{
    public int Id { get; set; }
    public string Name { get; set; }
    public Point Location { get; set; }
}