Dotnet-IO-logger / core

Dotnet Input output logger
https://marketplace.visualstudio.com/items?itemName=Diol.diol
MIT License
29 stars 1 forks source link

EF table name is missing when use sqlite #56

Closed OlzhabaevSh closed 3 months ago

OlzhabaevSh commented 3 months ago

Describe the bug EF doesn't show a table name when call sqlite.

To Reproduce Steps to reproduce the behavior:

  1. Use https://github.com/Dotnet-IO-logger/Playground/blob/79aae45e9b7da11d87be02f97df4bf84044e0643/source/Diol.Demo/src/Example3EntityFrameworkLoggingSample/Program.cs#L26
  2. Make a call
  3. Check the diol
  4. No table name.

Expected behavior The table name should be there...

Additional context An example of queries:

SELECT "c"."Id", "c"."Name", "c"."State"
FROM "Categories" AS "c"