标签: sql indexing entity-framework-core case-sensitive
目前,我在代码中定义了以下内容:
modelBuilder.Entity<Person>() .HasIndex(p => new { p.Name }).IsUnique();
当“约翰”已经存在时,当我尝试添加“约翰”时,这会导致sql插入错误。如果我想同时添加“ John”和“ john”(区分大小写的索引),应该如何定义该索引?