在下刚毕业工作,之前实习有用到Dapper?这几天新项目想用上Dapper,在下比较菜鸟,这块只是个人对Dapper的一种总结。
Dapper,当项目在开发的时候,在没有必要使用依赖注入的时候,如何做到对项目的快速开发这里对Dapper做一个小的进阶。
结合上一篇的博客,就可以使用了。
public class Demo { public string name { get; set; } public string DapperTest { get; set; } }
public class DemoManger: IDapperRepository<Demo> { public void Test() { Demo demo = new Demo(); { demo.name = "Test"; demo.DapperTest = "true"; } this.Add(demo); } }