diff options
| author | transtrike <transtrike@gmail.com> | 2021-02-19 18:28:16 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2021-02-19 18:28:16 +0200 |
| commit | 3410581312b1f1eb8607b8ca534cf4d8f1471d96 (patch) | |
| tree | 6a3d3e73525f4ff18e1159b441366259f8bf831b /src/Data/DevHive.Data.Models/ProfilePicture.cs | |
| parent | 02cf7a097c781cd0ef9e844078e873fcda5a3fcd (diff) | |
| download | DevHive-lazy_loading.tar DevHive-lazy_loading.tar.gz DevHive-lazy_loading.zip | |
Lazy loading craching VS Code on debug sessionlazy_loading
Diffstat (limited to 'src/Data/DevHive.Data.Models/ProfilePicture.cs')
| -rw-r--r-- | src/Data/DevHive.Data.Models/ProfilePicture.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Data/DevHive.Data.Models/ProfilePicture.cs b/src/Data/DevHive.Data.Models/ProfilePicture.cs index c502654..596591e 100644 --- a/src/Data/DevHive.Data.Models/ProfilePicture.cs +++ b/src/Data/DevHive.Data.Models/ProfilePicture.cs @@ -8,7 +8,8 @@ namespace DevHive.Data.Models public Guid Id { get; set; } public Guid UserId { get; set; } - public User User { get; set; } + + public virtual User User { get; set; } public string PictureURL { get; set; } } |
