Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Entity Framework 4.0,有没有办法将实体框架生成的 sql 从 n_varchar 更改为 varchar?谢谢。
使用属性
using System.ComponentModel.DataAnnotations; [Column(TypeName = "varchar")] public string UserName { get; set; }