public List<Application> FindAll()
{
using (ISession NSession = SessionProvider.GetSession())
{
ICriteria CriteriaQuery =
NSession.CreateCriteria(typeof(Application));
return (List<Application>) CriteriaQuery.List<Application>();
}
}
我得到一个异常,其中应用程序类如下:
public class Application
{
private string _name;
private Developer _developer;
private int _id;
private List<Bug> _bugs;
public Application()
{
}
public virtual int ApplicationId
{
get { return _id; }
set { _id = value; }
}
public virtual Developer Developer
{
get { return _developer; }
set { _developer = value; }
}
public virtual string Name
{
get { return _name; }
set { _name = value; }
}
public virtual List<Bug> Bugs
{
get { return _bugs; }
set { _bugs = value; }
}
}
System.InvalidCastException:无法转换类型为'NHibernate.Collection.Generic.PersistentGenericBag 1[BugTracker.Model.Bug]' to type 'System.Collections.Generic.List
1 [BugTracker.Model.Bug]'的对象。
这是application.hbm.xml:
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="BugTracker.Model"
assembly="BugTracker">
<class name="Application" table="Applications" lazy="false">
<id name="ApplicationId" column ="ApplicationId" type="int" unsaved-value ="0">
<generator class ="native"></generator>
</id>
<property name ="Name" column="Name"/>
<component access ="field.camelcase-underscore" name ="Developer"
class="Developer">
<property access ="field.camelcase-underscore"
column ="DeveloperFirstName" name="FirstName"/>
<property access ="field.camelcase-underscore"
column="DeveloperLastName" name="LastName"/>
</component>
<bag cascade="all-delete-orphan"
inverse ="true"
name ="Bugs"
lazy="false"
access ="field.camelcase-underscore">
<key column ="ApplicationId"/>
<one-to-many class ="Bug"/>
</bag>
</class>
</hibernate-mapping>
我是Nhibernate的新手,发现它非常复杂。我真的看不出这个问题。 异常发生在Application Class Constructor的最后一行。
答案 0 :(得分:7)
尝试将您的Bugs属性设置为IList。你需要使它通用。 问候。
答案 1 :(得分:3)
List<>()
方法未返回List<T>
,因此您无法将其投放到List<T>
。
相反,您应该致电ToList()
复制到List<Application>()
。 (之后你不需要演员)
答案 2 :(得分:3)
你需要投射到IList。 Nhiberante使用依赖注入,你需要使用接口让它发挥其魔力。
答案 3 :(得分:2)
我会告诉你另一次这种情况发生,大多数人都不知道。如果您有两列具有相同名称但具有不同类型的列,则会遇到此问题。例如,假设您根据某个ID进行连接,结果集看起来像
Id, Name, CreatedDate, Id, ExpirationDate
如果第一个Id列的数据类型是uniqueidentifier,第二个id列的数据类型是int,那么你将会得到
Input string 'f49f503d-70d5-4fbb-8aa2-a0bd0113ff4d' was not in
the correct format. ----> System.InvalidCastException :
Unable to cast object of type 'System.Guid' to type 'System.IConvertible'.
因为NHibernate会混淆两列,因为它们具有相同的名称/键。要解决此问题,只需通过别名为列添加唯一名称:
select Id as IDOne, Name, CreatedDate, Id as IDTwo, ExpirationDate
from Table1 t
join Table2 t2
on t.Name = t2.Name
这应解决您对.List()方法的任何问题。
注意: List()不要与NHibernate中的List混淆。一个是强类型,另一个当然不是。 List还会自动为您解析结果集,而不是为您提供弱类型的IList。就我而言,我只使用普通的旧List()。
答案 4 :(得分:1)
将您的代码更改为:
public virtual IList<Bug> Bugs
{
get { return _bugs; }
set { _bugs = value; }
}
请注意,错误是IList<Bug>
而不是List<Bug>
。