如果您的数据表的主键是两列,您可以使用 DataTable.Contains(object key) 吗?
如果是这样怎么办?
if so how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如果是这样怎么办?
if so how?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
要按主键选择,您应该使用以下之一:
DataTable.Rows.Find(Object)
(如果您的 PK 是一列DataTable.Rows.Find(Object[])
) > 如果您有超过 1 列作为主键对于类型化 DataSet,将为您生成具有正确签名的方法
MyDataTable.Rows.Find(...)
。 基本上它是 DataRowCollection 类上的一个方法To select by a primary key you should use one of:
DataTable.Rows.Find(Object)
in case your PK is one columnDataTable.Rows.Find(Object[])
in case you have more then 1 column as a primary keyIn case of a typed DataSet, the method
MyDataTable.Rows.Find(...)
will be generated for you with the proper signature. Basically it is a method on DataRowCollection class“Contains”似乎不是 DataRow 类的成员(也许这是一个类型化数据集?)
在任何情况下,您始终可以使用 (DataTable.Select(....).Length > 0) 作为代替
'Contains' does not seem to be a member of the DataRow class (maybe this is a typed data set?)
In any case, you can always use (DataTable.Select(....).Length > 0) as a substitute
我假设您指的是 DataRowCollection.Contains 方法? 有一个重载需要一组对象,您应该使用这个
I assume you're referring to the DataRowCollection.Contains method ? There is an overload that takes an array of objects, you should use this one