init
This commit is contained in:
23
DataPRO/DbAPI/SPCaching/SPCache.cs
Normal file
23
DataPRO/DbAPI/SPCaching/SPCache.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace DbAPI.SPCaching
|
||||
{
|
||||
/// <summary>
|
||||
/// just a helper class for caching what version of stored procedures to use
|
||||
/// holds what stored procedure version to use given a client version and a db version
|
||||
/// once this has been determined we don't need to determine it again ... usually
|
||||
/// </summary>
|
||||
public class SPCache
|
||||
{
|
||||
/// <summary>
|
||||
/// application or client version
|
||||
/// </summary>
|
||||
public int ClientVersion { get; set; }
|
||||
/// <summary>
|
||||
/// database version
|
||||
/// </summary>
|
||||
public int DbVersion { get; set; }
|
||||
/// <summary>
|
||||
/// version of stored procedure to use
|
||||
/// </summary>
|
||||
public int StoredProcedureVersion { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user