我无法找到哪个命名空间包含方法的内容。
- 例如
NHibernate.IQueryOver
,不包含“添加”的定义,并且没有扩展方法“添加”接受类型的第一个参数。
由于扩展方法,Visual Studio 无助于获得适当的使用方法。
我怎么知道应该包含哪些方法、命名空间?
我无法找到哪个命名空间包含方法的内容。
NHibernate.IQueryOver
,不包含“添加”的定义,并且没有扩展方法“添加”接受类型的第一个参数。由于扩展方法,Visual Studio 无助于获得适当的使用方法。
我怎么知道应该包含哪些方法、命名空间?
如果我们想将 QueryOver 传递给另一个方法,并对其执行一些过滤,我们必须知道传递的类型。
下面的代码片段显示,我们有一些已知的接口IBusinessObject
,它有 ID 和名称。这可能有助于where
为我们的通用参数 T 和 U 创建条件 - 并应用一些与该接口相关的东西:
using NHibernate.Criterion;
namespace MyNamespace
{
public interface IBusinessObject
{
int ID { get; }
string Name { get; }
}
public static QueryOver<T, U> AddSomeFilter<T, U>(QueryOver<T, U> queryOver)
where T: IBusinessObject
where U: IBusinessObject
{
// here we can play with ID, and Name
// because we know that U is of a type IBusinessObject
queryOver
.Where(x => x.ID > 1)
.Where(x => x.Name == "Abc");
return queryOver;
}
}
}
这可能很好,但它可能会导致一些依赖。这就是为什么我真的喜欢使用 Criteria API。我们可以传递一些元数据,并创建更多的动态处理器:
public static class MyExtension
{
public static ICriteria AddLike(ICriteria criteria, string property, string likeValue)
{
if (property.IsNotEmpty())
{
criteria.Add(Restrictions.Like(property, likeValue));
}
return criteria;
}
要处理注释中的方法,我们可以这样做:
public class SearchCriteria
{
public string PropertyName { get; set; }
public string LikeValue { get; set; }
}
public static class MyExtension
{
public static IQueryOver<Employee, Employee> ConstructQueryConditions(
this IQueryOver<Employee, Employee> query
, SearchCriteria criteria)
{
if (criteria.PropertyName.IsNotEmpty())
{
query.Where(Restrictions.Like(criteria.PropertyName, criteria.LikeValue));
}
return query;
}
要QueryOver
为类似实体创建Employee
,我们只需要ISession
, 和对实体的引用
// using for below query
using System;
using MyProject.Entity;
using MyProject.Data; // to get session
通过以上使用,我们可以进行此查询
...
var session = ... // get session
Employee empl = null;
var employee = session
.QueryOver<Employee>()
.Where(x => x.ID > 1)
.SelectList(list => list
.Select(x => x.ID)
.Select(x => x.FirstName)
.Select(x => x.LastName)
)
.Skip(10)
.Take(10)
.List<Employee>();
要使用像 Restrictions 这样的助手,我们需要
using NHibernate.Criterion;
这将使我们能够访问Restrictions
, Projections
,QueryOver.Of()
var disjunction = Restrictions.Disjunction();
var projection = Projections.Sum("Age");
var detachedQuery = QueryOver.Of<Employee>();
概括:
QueryOver
API - 我们只需要QueryOver
实例。因为这些方法不是扩展,它们是它的方法......如果我们想通过 QueryOver,我们只需要引用 Criterion:
using NHibernate.Criterion;
namespace MyNamespace
{
public static class MyExtension
{
public static QueryOver<T, U> AddPaging<T, U>(QueryOver<T, U> queryOver)
{
queryOver
.Skip(10)
.Take(10);
return queryOver;
}
}
}
如果我在某处找不到我知道的方法,我通常会使用ILSpy来查看 dll。您运行它,删除所有“默认”程序集,仅拖放您需要的程序集(例如 nhibernate 的程序集),然后查看->搜索,如果您知道类型名称,则在组合框中选择类型,如果您知道方法名称,则选择Member。