Skip to content

Commit af03419

Browse files
committedJan 30, 2019
Merge remote-tracking branch 'origin/master' into RefactorSequentialSelect
2 parents 692a987 + 116398d commit af03419

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+3115
-146
lines changed
 

‎src/NHibernate.Test/Async/FetchLazyProperties/FetchLazyPropertiesFixture.cs

+1,008
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace NHibernate.Test.FetchLazyProperties
8+
{
9+
public class Address
10+
{
11+
public string City { get; set; }
12+
13+
public string Country { get; set; }
14+
15+
public Continent Continent { get; set; }
16+
}
17+
}

0 commit comments

Comments
 (0)