I posted this on the entity framework developers site with no response so I'll ask here also.
By default EF Code First creates "not null" entries for integers. I'd like to create nullable integer entries. I've found C# examples (this site) but trying to do similar in VB.net doesn't work. EF seems to ignore "int?" and "nullable(of int)" property types. Has anyone figured out how to do this in VB? Also, just out of curiosity, why is the default "not null" for integers? Thanks in advance for any help.