-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add trigger support in EF Core. #30455
Comments
@QianYC it's very unlikely that EF could ever be able to replace writing SQL in database triggers. Trigger definitions use fully procedural language constructs, including flow control, exception handling; aside from these languages being very different across databases (full T-SQL on SQL Server, pl/pgsql on PostgreSQL...), EF simply cannot provide an entire .NET-based way which would be translatable to a full SQL script. If nothing else, .NET's LINQ expression tree support - which we use to translate LINQ querides - only supports (limited) expressions, and not statements or procedural constructs. We do have #10770 to track better support for managing triggers in migrations; but you would still have to specify the actual SQL yourself. What you call "in-memory trigger" can already implemented by overriding SaveChangse and including arbitrary logic in it. Is there something missing here that you're requesting? |
@roji Yeah I agree that the "in-memory trigger" can be implemented in customized DbContext. I'm just curious how did EF evolve so far - I mean, how does EF generate SQL statements e.g. creating tables, queries and so on, for different databases? You mentioned that different databases have different dialects so the above functionalities are also difficult to implement. I wonder if the trigger support is totally undoable or does it require lots of effort so EF team doesn't plan to do so? Thanks! |
The DDL syntax for creating and managing tables and columns is declarative, and very restricted; even if it indeed varies across database to a certain extent, the differences aren't big: CREATE TABLE looks overall pretty similar. On the other hand, the procedural language used to define a stored procedure (or trigger) are completely different. That's a full-fledged programming language with variables, loops, exception handling and many other constructs. It simply is a completely different type of exercise. |
Background
We use EF Core in our web api service, and it works fine for most of the CRUD scenarios. However, due to the complexity of business logic, we also have many triggers and procedures in the database. EF Core doesn't have support for triggers and procedures, so we have to write sql scripts and run those scripts when deploying the service. This approach has the following pain points:
Solution
I propose we implement 2 types of trigger: in-memory trigger and persistent trigger. Here's the description of these 2 triggers.
In-memory Trigger
In-memory trigger doesn't necessarily exist in the database, it only lies in the DAO layer. We can achieve this by modifying the DbContext.SaveChanges() method, when saving an entity, the DbContext also searches for related triggers and execute them. In-memory trigger can support all kinds of database provider.
Persistent Trigger
Persistent trigger in the contrast, exists in the database. The EF Core generates corresponding DDL statements to create the triggers in the database just as it does for the Entity class. Persistent trigger only runs on database provider that supports triggers.
Summary
This solution can solve the above 3 paint points:
The text was updated successfully, but these errors were encountered: