检查此名称是否在我们的项目数据库中

时间:2018-08-18 06:58:40

标签: c# nhibernate fluent-nhibernate entity

我正在使用nhibernate。我想检查这个名称是否存在于我的数据库中,因为我发现了以下方法来检查以下代码中的nhibernate,但是不幸的是,此代码无法正常工作

 IList<BrandsEntity> brands = session.CreateQuery("select Brand.name from Brand  where Brand.name = :name")
                    .SetMaxResults(1).SetString("name", name)
                    .List<BrandsEntity>();

enter image description here

0 个答案:

没有答案