EntLib 从空白数据库字段返回空格
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该列可能定义为 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.