我正在尝试用我编写的绑定两个表的自定义查询填充我的 DataGrid。该查询存储在我的数据集中(dbPBDataset.xsd)
表适配器下(TransactionTableAdapter)
,它被称为'qryActivePlayers,GetDataby1
'.
我想要做的是add a datagrid view on my form and load the result
对它的查询。我正在使用 Visual Studio 的 GUI 工具。对于任何其他查询,它都可以正常工作,但我相信因为这个绑定了两个表,它给了我错误,例如:Constrain Option Unhandled "Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints."
这是查询
SELECT c.Name, c.CustomerID, t.TransactionID, t.Buyin, t.EndTime, t.Type, c.Surname FROM [Transaction] AS t INNER JOIN Customer AS c ON t.CustomerID = c.CustomerID WHERE (t.EndTime = '1/1/1900')
有任何想法吗?