我正在尝试创建一个返回 XPcollection 的过程,如下所示:
public XPCollection<Txn> RetrieveTransactions()
{
if (ObjectSpace is DevExpress.ExpressApp.Xpo.XPObjectSpace)
{
XPCollection txns = (XPCollection)ObjectSpace.CreateCollection(typeof(Txn));
if (txns.Count == 0)
{
}
return (XPCollection<Txn>)txns;
}
}
但我收到以下错误:
Error 1 Cannot implicitly convert type 'DevExpress.Xpo.XPCollection' to 'DevExpress.Xpo.XPCollection<FX.Module.BusinessObjects.fxdb.Txn>'