[Mapped]
时间:2016-05-17 19:09:08
收藏:0
阅读:161
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cinway.Data
{
[AttributeUsage(AttributeTargets.Property)]
public class MappedAttribute : Attribute
{
public bool IsMapped { get; set; }
}
}
[Mapped]
原文:http://www.cnblogs.com/funn0812/p/5502506.html
评论(0)