博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
crm2011i创建nt类型字段
阅读量:5943 次
发布时间:2019-06-19

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

    using System;

    using Microsoft.Xrm.Sdk;
    using Microsoft.Xrm.Sdk.Messages;
    using Microsoft.Xrm.Sdk.Metadata;

    /// <summary>

    /// Int
    /// </summary>
    public class CreateIntAttribute
    {
        private string entityName = "new_class";

        public void Create(IOrganizationService service)

        {
            CreateAttributeRequest request = new CreateAttributeRequest();
            //关联的实体名称
            request.EntityName = entityName;
            IntegerAttributeMetadata intAttr = new IntegerAttributeMetadata();
            //字段名称
            intAttr.LogicalName = "new_intvalue";
            //架构名称
            intAttr.SchemaName = "new_intvalue";
            //显示中文名称
            intAttr.DisplayName = new Label("Int字段", 2052);
            //描写叙述
            intAttr.Description = new Label("Int字段", 2052);
            //需求级别
            intAttr.RequiredLevel = new AttributeRequiredLevelManagedProperty(AttributeRequiredLevel.None);
            //字段安全性
            intAttr.IsSecured = false;
            //审核
            intAttr.IsAuditEnabled = new BooleanManagedProperty(false);
            //格式
            intAttr.Format = IntegerFormat.None;
            //最大值
            intAttr.MaxValue = 1000;
            //最小值
            intAttr.MinValue = 0;

            request.Attribute = intAttr;

            service.Execute(request);

        }
    }

版权声明:本文博客原创文章,博客,未经同意,不得转载。

你可能感兴趣的文章
Centos下基于Hadoop安装Spark(分布式)
查看>>
wdcp 安装
查看>>
asterisk配置
查看>>
GA操作步骤和技巧(二)——用户行为分析
查看>>
shell中while循环里使用ssh的注意事项
查看>>
SHELL获取计算机外网ip的几种写法
查看>>
博客正在搬迁中
查看>>
触发器与存储过程的区别
查看>>
我的友情链接
查看>>
centos搭建supervisor
查看>>
linux日志分割
查看>>
我的友情链接
查看>>
Spring学习资料之 依赖注入(一)
查看>>
安装win7提示安装程序无法创建新的系统分区和定位现有系统分区
查看>>
快递查询接口的调用与解析案例
查看>>
我的友情链接
查看>>
服务器性能优化配置建议
查看>>
oracle sql语句实现累加、累减、累乘、累除
查看>>
3D地图的定时高亮和点击事件(基于echarts)
查看>>
接口由40秒到200ms优化记录
查看>>