//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- namespace RelyingPartyLogic { using System; using System.Collections.Generic; using System.Data; using System.Data.Common; using System.Data.EntityClient; using System.Data.Objects; using System.Linq; using System.Text; public partial class DatabaseEntities { /// /// Clears the expired nonces. /// /// The transaction to use, if any. internal void ClearExpiredNonces(EntityTransaction transaction) { this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredNonces"); } /// /// Clears the expired associations. /// /// The transaction to use, if any. internal void ClearExpiredAssociations(EntityTransaction transaction) { this.ExecuteCommand(transaction, "DatabaseEntities.ClearExpiredAssociations"); } } }