using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 实例级别和类级别的static_构造函数_字段属性的简单介绍 { public class B { public static void a() { } public B(int a)//构造函数无返回值,与类名一致.可以无参. { //int a 是形参 } public B() //无参构造函数 { }…
字段属性: unsigned: 无符号类型,只能修饰数值类型: create table if not exists t1(id int unsigned); zerofill:前端填0 //只能修饰数值类型 create table if not exists t1(id int(4) zerofill, price float(10,3) zerofill, name varchar(10)); auto_increment: 自动增长 create table if not exists…
前文索引:ASP.NET Core教程[二]从保存数据看Razor Page的特有属性与服务端验证ASP.NET Core教程[一]关于Razor Page的知识 实体字段属性 再来看看我们的实体类 public class Movie { public int ID { get; set; } public string Title { get; set; } [Display(Name = "Release Date")] [DataType(DataType.Date)] pub…