gpt4 book ai didi

c# - 模型类属性字符串长度为 nvarchar max

转载 作者:行者123 更新时间:2023-12-04 01:10:28 25 4
gpt4 key购买 nike

如何在模型类属性中分配 ms sql server 数据类型 nvarchar max 长度。假设我有一个属性 StudentName

[Required]
[MinLength(5)]
[MaxLength(200)]
public string StudentName { get; set; }

如何将 StudentName 数据类型设置为 nvarchar max?

最佳答案

如果您不想限制您的字符串 MaxLength (200) 的值,为什么要使用 MaxLength?您只需删除 MaxLength(200) 即可将模型更改为 nvarchar max

如果您只想在 Controller 和 View 上使用 200 个字符的限制,最好使用 ViewModel

关于c# - 模型类属性字符串长度为 nvarchar max,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64999720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com