Skip to content

Commit

Permalink
Made a filed read only.
Browse files Browse the repository at this point in the history
  • Loading branch information
ckadluba committed Dec 30, 2022
1 parent 79e4041 commit 82bd5da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SqlColumn
private SqlDbType _dataType = SqlDbType.VarChar; // backwards-compatibility default
private string _columnName = string.Empty;
private string _propertyName;
private List<string> _propertyNameHierarchy = new List<string>();
private readonly List<string> _propertyNameHierarchy = new List<string>();

/// <summary>
/// Default constructor.
Expand Down

0 comments on commit 82bd5da

Please sign in to comment.