Files
lserp_cs_5.0/插件库/Zhaizj.Framework/ORM/Attribute/CacheCountAttribute.cs
T
2026-07-10 15:25:05 +08:00

26 lines
512 B
C#

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;
}
}
}
}