我正在尝试使用我编写的绑定两个表的自定义查询填充我的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')
有什么想法吗?