एएसपी.नेट एमवीसी 2 में मैं OutputCache
और VaryByParam
विशेषता का उपयोग करता हूं। मुझे यह एक पैरामीटर के साथ ठीक काम कर रहा है, लेकिन जब मेरे पास विधि पर कई पैरामीटर हैं तो सही वाक्यविन्यास क्या है?मैं एकाधिक पैरामीटर के साथ VaryByParam का उपयोग कैसे करूं?
[OutputCache(Duration=30, VaryByParam = "customerId"]
public ActionResult Index(int customerId)
{
//I've got this one under control, since it only has one parameter
}
[OutputCache(Duration=30, VaryByParam = "customerId"]
public ActionResult Index(int customerId, int languageId)
{
//What is the correct syntax for VaryByParam now that I have a second parameter?
}
मैं दोनों पैरामीटर का उपयोग कर पृष्ठों को कैश करने के लिए कैसे प्राप्त करूं? क्या मैं दो बार विशेषता जोड़ता हूं? या मूल्य के रूप में "ग्राहक आईडी, भाषा आईडी" लिखें ??
लिंक काम नहीं करता – Espo
लिंक अपडेट किया गया। :-) – klabranche