使用 Entity Framework Core 进行审计跟踪

编程入门 行业动态 更新时间:2024-10-08 06:23:37
本文介绍了使用 Entity Framework Core 进行审计跟踪的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个 ASP.NET 核心 2.0,在 SQL Server 数据库上使用实体框架核心.

我必须跟踪和审计用户对数据所做的所有事情.我的目标是拥有一个自动机制来记录所有正在发生的事情.

例如,如果我有表 Animals,我想要一个并行表Audit_animals",您可以在其中找到有关数据、操作类型(添加、删除、编辑)和创建此操作的用户的所有信息.

这一次我已经在Django + MySQL中做了,但现在环境不同了.我发现了

解决方案

阅读 文档:

事件输出

要配置输出持久化机制,请参阅配置和数据提供者部分.

然后,在关于配置的文档中:

如果您没有指定数据提供者,默认的 FileDataProvider 将用于将 事件作为 .json 文件 写入到当前工作目录.(强调我的)

总而言之,请按照文档配置您要使用的数据提供程序.

I have an ASP.NET core 2.0 using Entity Framework core on a SQL Server db.

I have to trace and audit all the stuff made by the users on the data. My goal is to have an automatic mechanism writing all what is happening.

For example, if I have the table Animals, I want a parallele table "Audit_animals" where you can find all the info about the data, the operation type (add, delete, edit) and the user who made this.

I already made this time ago in Django + MySQL, but now the environment is different. I found this and it seems interesting, but I'd like to know if there are better ways and which is the best approach to do this in EF Core.

UPDATE

I'm trying this and something happens, but I have some problems.

I added this:

  • services.AddMvc().AddJsonOptions(options => { options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore; });

  • public Mydb_Context(DbContextOptions<isMultiPayOnLine_Context> options) : base(options) { Audit.EntityFramework.Configuration.Setup() .ForContext<Mydb_Context>(config => config .IncludeEntityObjects() .AuditEventType("Mydb_Context:Mydb")) .UseOptOut() }

  • public MyRepository(Mydb_Context context) { _context = context; _context.AddAuditCustomField("UserName", "pippo"); }

  • I also created a table to insert the audits (only one to test this tool), but the only thing I got is what you see in the image. A list of json files with the data I created.... why??

    解决方案

    Read the documentation:

    Event Output

    To configure the output persistence mechanism please see Configuration and Data Providers sections.

    Then, in the documentation on Configuration:

    If you don't specify a Data Provider, a default FileDataProvider will be used to write the events as .json files into the current working directory. (emphasis mine)

    Long and short, follow the documentation to configure the data provider you'd like to use.

    更多推荐

    使用 Entity Framework Core 进行审计跟踪

    本文发布于:2023-10-26 06:41:08,感谢您对本站的认可!
    本文链接:https://www.elefans.com/category/jswz/34/1529378.html
    版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
    本文标签:Entity   Framework   Core

    发布评论

    评论列表 (有 0 条评论)
    草根站长

    >www.elefans.com

    编程频道|电子爱好者 - 技术资讯及电子产品介绍!