自定义字符串作为实体框架的主键

本文关键字:框架 实体 字符串 自定义 | 更新日期: 2023-09-27 18:08:42

我正在尝试使用代码优先实体框架将个性化字符串设置为主键。

我有一个辅助函数,它返回一个n个字符的随机字符串,我想用它来定义我的Id,作为YouTube视频代码。

using System.Security.Cryptography;
namespace Networks.Helpers
{
    public static string GenerateRandomString(int length = 12)
    {
        // return a random string
    }
}

我不想使用自动递增的整数(我不希望用户使用bot太容易访问每个项目)或Guid(太长而无法显示给用户)。

using Networks.Helpers;
using System;
using System.ComponentModel.DataAnnotations;
namespace Networks.Models
{
    public class Student
    {
        [Key]
        // key should look like 3asvYyRGp63F
        public string Id { get; set; }
        public string Name { get; set; }
    }
}

是否有可能定义如何必须在模型中直接分配Id ?我应该在模型中包含helper的代码而不是使用外部类吗?

自定义字符串作为实体框架的主键

为了在你的内部应用程序中方便起见,我仍然会使用int作为主键,但也会为你的唯一字符串索引包含另一个属性:

[Index(IsUnique=true)]
[StringLegth(12)]
public string UniqueStringKey {get;set;}

字符串列必须是有限长度才能允许索引。

请记住,数据库将按主键对记录进行物理排序,因此拥有一个自动递增的int是理想的-随机生成的字符串不是这样。

或者通过EF fluid api:

modelBuilder.Entity<Student>()
                .Property(u => u.UniqueStringKey)
                .HasMaxLength(12)
                .HasColumnAnnotation("Index", new IndexAnnotation(new IndexAttribute("UQ_UniqueStringKey") { IsUnique = true }));