一旦我获得了 Linq 查询的结果,我并不总是很高兴。可能会出现我期待的结果,但事实并非如此。例如,我的客户期望客户在客户列表中,但事实并非如此。是我的客户在说“伙计,我的客户在哪里?”,而不是我。我是花花公子,要继续做花花公子,我必须给我的客户一个理由。
有没有一种简单的方法来获取给定的对象实例和 Linq 查询并确定查询中的哪些表达式排除了该实例?
编辑好的,这是一个更好的例子
输出应该是这样的:
您的客户被排除在外有两个原因:
客户名字是 Carl,但应该是 Daniel
客户年龄为 18 岁,但应大于 20
public class Customer
{
public string FirstName { get; set; }
public int Age { get; set; }
}
[Test]
public void Dude_wheres_my_object_test1()
{
var daniel = new Customer { FirstName = "Daniel", Age = 41 };
var carl = new Customer { FirstName = "Carl", Age= 18 };
var Customers = new List<Customer>() { daniel, carl };
// AsQueryable() to convert IEnumerable<T> to IQueryable<T> in
//the case of LinqtoObjects - only needed for this test, not
//production code where queies written for LinqToSql etc normally
//return IQueryable<T>
var query = from c in Customers.AsQueryable()
where c.Age > 20
where c.FirstName == "Daniel"
select c;
//query would return Daniel as you'd expect, but not executed here.
//However I want to explain why Carl was not in the results
string[] r = DudeWheresMyObject(query, carl);
Assert.AreEqual("Age is 18 but it should be > 20", r[0]);
Assert.AreEqual("FirstName is Carl but it should be Daniel", r[1]);
//Should even work for a Customer who is not
//in the original Customers collection...
var ficticiousCustomer = new Customer { FirstName = "Other", Age = 19};
string[] r2= DudeWheresMyObject(query,
ficticiousCustomer);
Assert.AreEqual("Age is 19 but it should be > 20", r2[0]);
Assert.AreEqual("FirstName is Other but it should be Daniel", r2[1]);
}
public string[] DudeWheresMyObject<T>(IQueryable<T> query, T instance)
{
//Do something here with the query.Expression and the instance
}
首先,在我尝试编写一些花哨的 Fluent 框架之前,有人已经这样做了吗?
到目前为止,我已经考虑导航表达式树并针对仅包含我的对象的 IQueryable 执行每个分支。现在我没有大量使用原始表达式树的经验,所以我希望那些必须提出任何陷阱甚至解释这是否是死胡同以及原因的人。
我担心由此产生的任何结果都应该:
- 可重用 - 应适用于与返回同一类的 Linq 查询比较的任何对象。
- 不影响原始查询的性能(这应该只是标准的 Linq)。
- 应该与 Linq 实现无关。
- 如果在缺少的实例上设置了多个属性值,将其从结果中排除,则应报告所有这些原因。
编辑 我并不是建议我使用不同的查询排列多次对数据库执行 LinqToSql 并比较结果。相反,我正在寻找一种方法来获取单个实例并将其与表达式树进行比较(无需再次直接执行查询)
另外,我想说明其他人是否会觉得这很有用。如果是这样,我会考虑启动一个开源项目来解决它。