博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实现UniqueAttribute唯一性约束,sqlunique约束[转]
阅读量:4964 次
发布时间:2019-06-12

本文共 2739 字,大约阅读时间需要 9 分钟。

using System;using System.ComponentModel.DataAnnotations;using System.Data.Entity;namespace Zwj.TEMS.Base{    ///     /// 唯一性标识    ///     [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]    public class UniqueAttribute : ValidationAttribute    {        protected string tableName;        protected string filedName;        public UniqueAttribute(string tableName, string filedName)        {            this.tableName = tableName;            this.filedName = filedName;        }        public override Boolean IsValid(Object value)        {            bool validResult = false;            //TEMSContext 是我项目中的DB上下文类,若需要使用在其它项目中,请更改成实际的DB上下文类就可以了!            using (TEMSContext context = new TEMSContext())            {               string sqlCmd=string.Format("select count(1) from [{0}] where [{1}]=@p0",tableName,filedName);               context.Database.Connection.Open();               var cmd=context.Database.Connection.CreateCommand();               cmd.CommandText = sqlCmd;               var p0 = cmd.CreateParameter();               p0.ParameterName = "@p0";               p0.Value = value;               cmd.Parameters.Add(p0);               int result=Convert.ToInt32(cmd.ExecuteScalar());                validResult=(result<=0);            }            return validResult;        }    }}

在实体中使用方法如下:

///         /// 类别代码        ///         [Required()]        [MaxLength(50)]        [Unique("Category", "CategoryCode")]        [Display(Name = "类别代码")]        public string CategoryCode { get; set; }

 

调用与验证方法如下:

//我这里写了一个单元测试的验证方法,大家可以用在实际项目中        public void ValidateEntity(object entity)        {            var t = entity.GetType();            var properties = t.GetProperties();            foreach (var p in properties)            {                UniqueAttribute[] attrs;                if (p.TryGetAttribute
(out attrs)) { bool result = attrs[0].IsValid(p.GetValue(entity, null)); Assert.IsTrue(result, "验证不唯一,存在重复值!"); } } }
 
public static class ClassExtension    {        ///         /// 尝试获取指定类别特性        ///         /// 
/// /// ///
public static bool TryGetAttribute
(this PropertyInfo p, out TAttribute[] returnAttrs) where TAttribute : Attribute { var attrs = p.GetCustomAttributes(typeof(TAttribute), false); if (attrs != null && attrs.Length > 0) { returnAttrs = attrs.Select(t => t as TAttribute).ToArray(); return true; } returnAttrs=null; return false; } }

转载于:https://www.cnblogs.com/whtydn/p/5262960.html

你可能感兴趣的文章
ssh框架性能优化
查看>>
c++构造函数与析构函数
查看>>
Python实现斐波那契数列
查看>>
yarn命令的使用
查看>>
使用公式C=(5/9)(F-32)打印下列华氏温度与摄氏温度对照表。
查看>>
hdu 2586 How far away ? 倍增求LCA
查看>>
深入理解内存模型JMM
查看>>
万事不要太过强求
查看>>
HDU 3410【单调栈】
查看>>
一些网络教程的传送门
查看>>
[POI2013]BAJ-Bytecomputer
查看>>
加油,加油
查看>>
开发流程
查看>>
UIPageViewController
查看>>
BeanUtils简化数据封装
查看>>
2017.4.25PM
查看>>
推箱子
查看>>
弹飞绵羊
查看>>
ecshop和ucenter的整合
查看>>
SQL中Group By的使用
查看>>