一.接口定义 1.定义 interface类型可以定义一组方法,但是这些不需要实现,并且interface不能包含任何变量 package main import ( "fmt" ) type test interface{ print() } type Student struct{ name string age int score int } func (p *Student)print(){ fmt.Println("name",p.name) fmt.Pr…
目前项目中使用到的EntityFramework中几种操作小结,先标记下.没有详细介绍,后续有空的话再补充一些并完善一下. 列中加入RowVersion时间戳 public class Product { public int Id { get; set; } public string Name { get; set; } [Timestamp] public Byte[] RowVersion { get; set; } } 查询中加入R…