Adding a [FixedLength] Attribute in Code-First Entity Framework
August 17, 2015
Author: Craig Stuntz
In Code First Entity Framework models, you can define the length of a string field with StringLengthAttribute, but you have to write code in OnModelCreating to indicate a CHAR/NCHAR fixed length field:
public class MyEntity
{
[Key]
public int Id {…
Several developers reporting an issue where the C++Builder IDE code editor structure window was blank after they upgraded their Windows machine to Windows 10. The issue is reproducible on these scenarios:
The user has a machine with a Windows version lower than Windows 10…