Why in, C# ASP.NET MVC Code First project, POCO Classes must have getters and setters ( {get; set; } ) in order to work?
public float data { get; set; }
or in db context class
public DbSet<SGD.Models.MyData> MyData{ get; set; }
I just don't understand why a simple attribute (without getters and setters) doesn't works.