diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-05-20 18:40:40 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-05-20 18:40:40 -0700 |
commit | 6822259ec7470e0ee69f3e5ad7c0a0299851e93f (patch) | |
tree | 96f16fbc222278e4a5bcaaad4dcf7e637038c29d /projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs | |
parent | e45e061e67a770e2d6093ad200ad1f23c13e9d0c (diff) | |
download | DotNetOpenAuth-6822259ec7470e0ee69f3e5ad7c0a0299851e93f.zip DotNetOpenAuth-6822259ec7470e0ee69f3e5ad7c0a0299851e93f.tar.gz DotNetOpenAuth-6822259ec7470e0ee69f3e5ad7c0a0299851e93f.tar.bz2 |
Renamed project template's stored proc to match new name.
Diffstat (limited to 'projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs')
-rw-r--r-- | projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs b/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs index 670f1d5..1ecc01c 100644 --- a/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs +++ b/projecttemplates/RelyingPartyLogic/RelyingPartyApplicationDbStore.cs @@ -84,9 +84,9 @@ namespace RelyingPartyLogic { /// This should be done frequently enough to avoid a memory leak, but sparingly enough /// to not be a performance drain. /// </remarks> - internal void ClearExpiredAssociations() { + internal void ClearExpiredCryptoKeys() { using (var dataContext = new TransactedDatabaseEntities(IsolationLevel.ReadCommitted)) { - dataContext.ClearExpiredAssociations(dataContext.Transaction); + dataContext.ClearExpiredCryptoKeys(dataContext.Transaction); } } } |