码迷,mamicode.com
首页 > 其他好文 > 详细

crm2011创建int类型字段

时间:2014-06-10 15:17:55      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:crm2011创建int类型字段   crm2011开发   crm2011   crm   

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

crm2011创建int类型字段,布布扣,bubuko.com

crm2011创建int类型字段

标签:crm2011创建int类型字段   crm2011开发   crm2011   crm   

原文地址:http://blog.csdn.net/y_f123/article/details/29555613

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!