Не удается неявно преобразовать тип 'DevExpress.Xpo.XPCollection'
Я пытаюсь создать процедуру, которая возвращает коллекцию XP следующим образом:
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>'
1 ответ
Ниже приведен пример, как я создаю XPCollections, я надеюсь, что это может помочь!
private XPCollection<Txn> retrieveTransactions;
public XPCollection<Txn> RetrieveTransactions
{
get
{
if (ObjectSpace is DevExpress.ExpressApp.Xpo.XPObjectSpace)
{
this.retrieveTransactions = new XPCollection<Txn>(Session);
}
return this.retrieveTransactions;
}
}