摘要:
using System; using System.Drawing; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Interop; using System.Windows.Med 阅读全文
摘要:
ASP.NET Core已有数据库,却新建项目,只需要构造出相应的类,DbContext,然后直接add-migration init即可!!而不用执行update-database,执行后者会报错:Error Number:2714,State:6,Class:16 There is alread 阅读全文
摘要:
public interface IRepository<T> { void Add(T entity); List<T> Get(); } public class Repository<T> : IRepository<T> { List<T> _list = new List<T>(); pu 阅读全文