forked from ravendb/ravendb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProjectingIdFromNestedClass.cs
78 lines (68 loc) · 2.19 KB
/
ProjectingIdFromNestedClass.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// -----------------------------------------------------------------------
// <copyright file="ProjectingIdFromNestedClass.cs" company="Hibernating Rhinos LTD">
// Copyright (c) Hibernating Rhinos LTD. All rights reserved.
// </copyright>
// -----------------------------------------------------------------------
using System;
using System.Diagnostics;
using System.Linq;
using Raven.Abstractions.Indexing;
using Raven.Client.Indexes;
using Raven.Tests.Common;
using Xunit;
namespace Raven.Tests.MailingList
{
public class ProjectingIdFromNestedClass : RavenTest
{
public class Document
{
public string Id
{
get;
set;
}
}
public class Documents_TestIndex : AbstractIndexCreationTask<Document>
{
public class Result
{
public string Id
{
get;
set;
}
}
public Documents_TestIndex()
{
Map = docs => from d in docs
select new
{
d.Id
};
StoreAllFields(FieldStorage.Yes);
}
}
[Fact]
public void TestSelectFields()
{
using (var store = NewDocumentStore())
{
store.ExecuteIndex(new Documents_TestIndex());
using (var session = store.OpenSession())
{
session.Store(new Document());
session.SaveChanges();
}
using (var session = store.OpenSession())
{
var query = session.Advanced
.DocumentQuery<Document, Documents_TestIndex>()
.WaitForNonStaleResults()
.SelectFields<Documents_TestIndex.Result>()
.ToList();
Assert.True(query.All(d => !String.IsNullOrEmpty(d.Id)));
}
}
}
}
}