FormView 尝试从空白文本框中插入 Null

发布于 2024-11-28 22:16:21 字数 121 浏览 1 评论 0原文

我将 FormView 控件与 EntityFramework 一起使用。我正在尝试添加新记录,但每次我将文本框留空时,它都会尝试插入空值,而不是插入空字符串。

如何控制此行为,使其使用空字符串而不是 null?

I'm using a FormView control with the EntityFramework. I'm trying to add a new record, but every time I leave a text box blank, instead of inserting an empty string, it tries to insert a null.

How do I control this behavior so that it will use an empty string instead of a null?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雪落纷纷 2024-12-05 22:16:21

您可以在应用程序的不同级别处理此问题:

1)您可以在 ItemCreated 事件处理程序中设置默认值并在那里设置默认值。

2)如果您有权限修改dblayer,您可以为db中的列设置默认值(或者,也许它已经设置),然后将StoreGenerationPattern设置为Compulated(看在,例如 实体模型 - 如何使用数据库的默认值插入时的列值

you can handle this in the different levels of your application:

1) you can set default value in ItemCreated event handler and set default value there.

2) If you have permission to modify dblayer, you can set default value for column in db (or, maybe it is already set) and then set StoreGenerationPattern to Computed (look at, for example Entity Model - How to use Database's Default Column Values while inserting)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文