EntLib 从空白数据库字段返回空格

发布于 2024-12-02 17:26:34 字数 124 浏览 0 评论 0原文

我在 SQL Server 中有一个空白列(空字符串)。然而,在通过 EntLib 5.0 调用我的存储过程之后,我的业务对象中的属性中有空格——与数据库列的宽度相同的数字。

为什么 EntLib 用空格填充我的属性?

I have a column in SQL Server which is blank (empty string). After calling my sproc via EntLib 5.0, however, the property in my business object has spaces in it--the same number as the width of the database column.

Why is EntLib populating my property with spaces?

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

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

发布评论

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

评论(1

十级心震 2024-12-09 17:26:34

该列可能定义为 char(x),其中 x 是返回的空格数。

如果您希望空白为空字符串,请将列定义更改为 varchar。

The column is probably defined as char(x) where x is the number of spaces that are being returned.

If you want blank to be an empty string change your column definition to varchar.

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