We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This may have less to do with the property, and more to do with the syntax inside of the lamda body
public Language CurrentLanguage => this.currentLanguage ?? (this.currentLanguage = this.UnitOfWork.GetRepository<Language>() .Get(SiteContext.Current.LanguageDto.Id));
Should be something more like
public Language CurrentLanguage => this.currentLanguage ?? (this.currentLanguage = this.UnitOfWork.GetRepository<Language>().Get( SiteContext.Current.LanguageDto.Id ));
The text was updated successfully, but these errors were encountered:
This may be related to #7 Prettier typescript formatting - so looking at how they do it could help
this.currentLanguage = () => { this.currentLanguage ?? (this.currentLanguage = this.UnitOfWork.GetRepository<Language>().Get( SiteContext.Current.LanguageDto.Id )); };
Sorry, something went wrong.
The ?? is a BinaryExpression, so #37 is also related to this
??
This was resolved with #7
No branches or pull requests
This may have less to do with the property, and more to do with the syntax inside of the lamda body
Should be something more like
The text was updated successfully, but these errors were encountered: