I\'m using EntityFramework 6 in my C# model-first project which using a MySQL database. Everything was fine and I could ge
This can also be achieved using the Column data attribute within the Entity.
Column
[Column("Active", TypeName = "bit")] [DefaultValue(false)] public bool Active { get; set; }