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