Created
May 21, 2010 14:46
-
-
Save chaliy/408920 to your computer and use it in GitHub Desktop.
Readonly collection property for NHibernate
This file contains hidden or 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
| private readonly IList<ProductImageAssignee> _images = new List<ProductImageAssignee>(); | |
| public virtual IEnumerable<ProductImageAssignee> Images { get { return _images; } } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment