I am using EF6 and trying to use Code First with Migrations against a SQL DB.
Is it possible using a data annotation in my POCO class to specify that the default value of a Boolean or Bit field should be true?
I know I could modify the data migrations code to add it to the specific migration class but would like to avoid that.