-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
StubManager complex type issue while caching the item
- Loading branch information
1 parent
2bc73c7
commit aab691e
Showing
4 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System; | ||
|
||
namespace StubGenerator.Test.Models | ||
{ | ||
public abstract class EntityType<T> where T : IComparable | ||
{ | ||
public T Id { get; set; } | ||
} | ||
|
||
public class ComplexModelChild : EntityType<Guid> | ||
{ | ||
public string Email { get; set; } | ||
} | ||
|
||
public class ComplexModel : EntityType<Guid> | ||
{ | ||
public string FirstName { get; set; } | ||
public ComplexModelChild ComplexModelChild { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters