如果您的数据表的主键是两列,您可以使用 DataTable.Contains(object key) 吗?

发布于 2024-07-23 02:55:08 字数 16 浏览 7 评论 0原文

如果是这样怎么办?

if so how?

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

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

发布评论

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

评论(3

笑梦风尘 2024-07-30 02:55:08

要按主键选择,您应该使用以下之一:

  • 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 column
  • DataTable.Rows.Find(Object[]) in case you have more then 1 column as a primary key

In 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

说好的呢 2024-07-30 02:55:08

“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

时间海 2024-07-30 02:55:08

我假设您指的是 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

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