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