init lserp cs 5.0
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
namespace Zhaizj.Framework.ORM {
|
||||
|
||||
/// <summary>
|
||||
/// count »º´æÅú×¢
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class CacheCountAttribute : Attribute, ICacheAttribute {
|
||||
|
||||
private String _targetPropertyName;
|
||||
|
||||
public CacheCountAttribute( String targetPropertyName ) {
|
||||
_targetPropertyName = targetPropertyName;
|
||||
}
|
||||
|
||||
public String TargetPropertyName {
|
||||
get {
|
||||
return _targetPropertyName;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user