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