-
Notifications
You must be signed in to change notification settings - Fork 66
Open
Labels
Description
Supposing a document like:
public class Book
{
public string Title { get; set; }
public string Author{ get; set; }
public string Text{ get; set; }
}
And a query like:
from b in books
where b.Title == "foo" || b.Author == "bar"
select new { b.Title, b.Author };
Lucene.Net.Linq should not retrieve large, possibly compressed fields like Text since the client is not using that field.