OutputCacheParameters.SqlDependency Property

Definition

Gets or sets a set of database and table name pairs that the cache entry depends on.

public string SqlDependency { get; set; }

Property Value

A string that identifies a set of database and table name pairs that the cache entry depends on. The cache entry is expired when the table's data is updated or changes.

Remarks

The SqlDependency string identifies databases and tables 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.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also