forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLazyLoadBug.cs
71 lines (64 loc) · 1.31 KB
/
LazyLoadBug.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
using System;
using System.Collections.Generic;
namespace NHibernate.DomainModel.NHSpecific
{
/// <summary>
/// Summary description for LLParent.
/// </summary>
public class LLParent
{
private ISet<LLChild> _children;
private ISet<LLChildNoAdd> _childrenNoAdd;
public ISet<LLChild> Children
{
get
{
if (_children == null)
_children = new HashSet<LLChild>();
return _children;
}
set { _children = value; }
}
public ISet<LLChildNoAdd> ChildrenNoAdd
{
get
{
if (_childrenNoAdd == null)
_childrenNoAdd = new HashSet<LLChildNoAdd>();
return _childrenNoAdd;
}
set { _childrenNoAdd = value; }
}
}
/// <summary>
/// Summary description for LLChild.
/// </summary>
public class LLChild
{
private LLParent _parent;
public LLParent Parent
{
get { return _parent; }
set
{
_parent = value;
// this is the source of the "bug" - more accurately described as user error
// but it raised a Null Pointer Exception instead of a LazyInitializationException
// like it should have.
_parent.Children.Add(this);
}
}
}
/// <summary>
/// Summary description for LLChild.
/// </summary>
public class LLChildNoAdd
{
private LLParent _parent;
public LLParent Parent
{
get { return _parent; }
set { _parent = value; }
}
}
}