GithubHelp home page GithubHelp logo

audittemp's Introduction

审计类库

1、目前只实现了Mysql,Oracle,MongoDB,SQLserver

2、目前有两种注入方式:

统一在配置文件加上数据库信息 appsettings.json


"DatabaseOptions": {
  "DatabaseType": "mysql",
  "Version": "8.0.22",
  "DatabaseName": null,
  "ConnectionString": "Server=localhost; Port=3306;Stmt=; Database=business; Uid=root; Pwd=123456;"
}
  • A委托:
 //Oracle委托Action
builder.Services.ConfigureDbContext(action: opt =>
{
   opt.DatabaseType = DatabaseType.Oracle;
   opt.Connect
    ionString = "Data Source=XXXXXXX:1521/XXX;User Id=XXXXXX;Password=XXXX;Pooling=false;Max Pool Size=100;Min Pool Size=10;Load Balancing=true;HA Events=true;Validate Connection=true";
});
  • 选项模式 //选项模式 builder.Services.ConfigureMyDbContext(config);

在控制器加上标签: [Audited] 若要排除某个接口不做审计,则在相应的方法加上标签:DisableAuditing

audittemp's People

Contributors

jonnery avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.