Skip to content

Instantly share code, notes, and snippets.

@chaliy
Created May 21, 2010 14:46
Show Gist options
  • Select an option

  • Save chaliy/408920 to your computer and use it in GitHub Desktop.

Select an option

Save chaliy/408920 to your computer and use it in GitHub Desktop.
Readonly collection property for NHibernate
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