插入 int 相同值的所有列
在 LINQ 中,如何在 table1 中 int 类型的所有列中插入相同的数字值:1,而不用数字 (colint1, colint2, colint3, colint4) 指定每一列?
In LINQ how do i insert into all columns of type int in a table1 the same number value: 1, without specifying each column with the number (colint1, colint2, colint3, colint4) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以对对象“o”和新的整数值“newValue”使用类似这样的反射(抱歉,我在这台机器上没有 VS 来测试它):
然后一定要保存您的更改
You can use reflection with something like this for an object 'o' and a new integer value 'newValue' (sorry, I don't have VS on this machine to test it out):
Then just be sure to save your changes