Changed GetIdValue to use UniqueID
This commit is contained in:
@@ -191,7 +191,7 @@ namespace VEPROMS.CSLA.Library
|
||||
/// <returns>A Unique ID for the current AssociationInfo</returns>
|
||||
protected override object GetIdValue()
|
||||
{
|
||||
return _AssociationID;
|
||||
return MyAssociationInfoUnique; // Absolutely Unique ID
|
||||
}
|
||||
#endregion
|
||||
#region Factory Methods
|
||||
@@ -199,7 +199,7 @@ namespace VEPROMS.CSLA.Library
|
||||
private static int AssociationInfoUnique
|
||||
{ get { return ++_AssociationInfoUnique; } }
|
||||
private int _MyAssociationInfoUnique = AssociationInfoUnique;
|
||||
public int MyAssociationInfoUnique
|
||||
public int MyAssociationInfoUnique // Absolutely Unique ID - Info
|
||||
{ get { return _MyAssociationInfoUnique; } }
|
||||
protected AssociationInfo()
|
||||
{/* require use of factory methods */
|
||||
|
Reference in New Issue
Block a user