zoukankan      html  css  js  c++  java
  • crm2011i创建nt类型字段

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

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

  • 相关阅读:
    Xcopy参数介绍
    C# 子窗体中调用父窗体中的方法(或多窗体之间方法调用)
    WinForm窗体之间交互的一些方法(转)
    C#.Net组件开发 使用Attach to Process实时调试设计器代码(转)
    win7以管理员身份运行程序
    如何关闭Windows7的UAC
    用“回车”键代替“Tab”键
    笑话20110928
    项目管理师
    软考计算机技术与软件专业技术资格(水平)考试
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/4729604.html
Copyright © 2011-2022 走看看