Changed GetIdValue to use UniqueID
This commit is contained in:
@@ -444,7 +444,7 @@ namespace VEPROMS.CSLA.Library
|
||||
/// <returns>A Unique ID for the current RODb</returns>
|
||||
protected override object GetIdValue()
|
||||
{
|
||||
return _RODbID;
|
||||
return MyRODbUnique; // Absolutely Unique ID
|
||||
}
|
||||
#endregion
|
||||
#region ValidationRules
|
||||
@@ -599,7 +599,7 @@ namespace VEPROMS.CSLA.Library
|
||||
protected static int RODbUnique
|
||||
{ get { return ++_RODbUnique; } }
|
||||
private int _MyRODbUnique = RODbUnique;
|
||||
public int MyRODbUnique
|
||||
public int MyRODbUnique // Absolutely Unique ID - Editable
|
||||
{ get { return _MyRODbUnique; } }
|
||||
protected RODb()
|
||||
{/* require use of factory methods */
|
||||
|
Reference in New Issue
Block a user