We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96793fc commit 09adcfdCopy full SHA for 09adcfd
src/NHibernate.Test/TransformTests/AliasToBeanResultTransformerFixture.cs
@@ -43,16 +43,16 @@ public struct TestStruct
43
44
public class PublicPropertiesSimpleDTO
45
{
46
- public int Id { get; set; }
+ public object Id { get; set; }
47
public string Name { get; set; }
48
}
49
50
public class PrivateFieldsSimpleDTO
51
52
- private int id;
+ private object id;
53
private string name;
54
55
- public int Id { get { return id; } }
+ public object Id { get { return id; } }
56
public string Name { get { return name; } }
57
58
0 commit comments