源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

C# 6.0的属性(Property)的语法与初始值详解

  • 时间:2021-08-13 04:11 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:C# 6.0的属性(Property)的语法与初始值详解
昨晚有学点新知识,是有关C# 6.0的。 在数据库创建有一张表: [img]http://files.jb51.net/file_images/article/201607/201607071104459.jpg[/img]
CREATE TABLE [dbo].[ToolLocation]
(
 [ToolLocation_nbr] SMALLINT IDENTITY(1,1) NOT NULL PRIMARY KEY,
 [LocationName] NVARCHAR(20) NOT NULL,
 [Description] NVARCHAR(50) NULL,
 [IsActive] BIT NOT NULL DEFAULT(1)
)
GO
Source Code
看看前后对比与写法: [img]http://files.jb51.net/file_images/article/201607/2016070711044512.jpg[/img]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Insus.NET.Models
{
 public class ToolLocation
 {
  public short ToolLocation_nbr { get; set; } = 1;

  public string LocationName { get; set; } = string.Empty;

  public string Description { get; set; } = string.Empty;

  public bool IsActive { get; set; } = true;
 }
}
Source Code
下面Insus.NET演示一下,创建一个实体: [img]http://files.jb51.net/file_images/article/201607/2016070711044513.jpg[/img]
using Insus.NET.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Insus.NET.Entities
{
 public class ToolLocationEntity
 {
  public IEnumerable<ToolLocation> ToolLocations()
  {
   return new List<ToolLocation>() {
    new ToolLocation(),
    new ToolLocation { ToolLocation_nbr = 2, LocationName = "A2", Description = "A2 CNC",IsActive = true},
    new ToolLocation { ToolLocation_nbr = 3, LocationName = "C4", Description = "C4 CNC",IsActive = false}
   };
  }
 }
}
Source Code
它将会有三个对象,第一个对象是使用默认值。 在控制器中: [img]http://files.jb51.net/file_images/article/201607/2016070711044514.jpg[/img] 在ASP.NET MVC视图中,显示这些数据: [img]http://files.jb51.net/file_images/article/201607/2016070711044515.jpg[/img] 看看运行的效果: [img]http://files.jb51.net/file_images/article/201607/2016070711044516.jpg[/img] 以上这篇C# 6.0的属性(Property)的语法与初始值详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程素材网。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部