PartialCachingAttribute.SqlDependency Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a delimited string that identifies one or more database and table name pairs that the cached user control is dependent on.
public:
property System::String ^ SqlDependency { System::String ^ get(); };
public:
property System::String ^ SqlDependency { System::String ^ get(); void set(System::String ^ value); };
public string SqlDependency { get; }
public string SqlDependency { get; set; }
member this.SqlDependency : string
member this.SqlDependency : string with get, set
Public ReadOnly Property SqlDependency As String
Public Property SqlDependency As String
Property Value
A delimited string that identifies a set of database and table names that the user control cache entry is dependent on.
Remarks
The SqlDependency string identifies databases and table names according to the name of a SQL Server cache dependency in your configuration (typically added using the sqlcachedependency
configuration elements). If you use SQL Server 2005, you can set the SqlDependency property to "CommandNotification", which instructs ASP.NET to create row level dependencies for all SQL commands issued within the context of the current ASP.NET page.