Laraue.EfCoreTriggers
Laraue.EfCoreTriggers copied to clipboard
Library to write triggers in C# with EF.Core
I plan to have several entities that implement common interfaces. For example, I might have an interface that includes an `Inactive` flag. For ease of maintenance, I want to automatically...
Hello Thankyou for this wonderful package, i wondering if its possible to create a multiple AfterUpdate with diffrents Names?
Hi, If i have an enum: ``` public enum ServiceStatus { NotActive, Active } ``` and classes Service and ServiceHistory: ``` public class Service { public ServiceStatus Status { get;...
I'm trying to install Laraue.EfCoreTriggers.MySql 6.3.2 via Nuget but I get this message: Laraue.EfCoreTriggers.MySql 6.3.2 is not compatible with netcoreapp3.1
How can I make multiple conditions for for example, that is to say (If ElseIf else)Example: EntityTypeBuilder.AfterUpdate(trigger => trigger .Action(action => action .Condition((transactionBeforeUpdate, transactionAfterUpdate) => transactionAfterUpdate.Method== "cash") .Delete( (entityBeforeUpdate, entityAfterUpdate,...
Is it possible to configure a trigger like this one with this library? What i'm trying to achieve is to delete one side of a many to many relationship table...
Would love to see the explicit nullable feature used in your library. One could make sure variables are used correctly and needed checks are added to it.
You could use [TestContainers](https://github.com/testcontainers/testcontainers-dotnet) for the UnitTests. With that you could start a database instance for each specific test,
Hi, im using this library and just parallelised the test execution of all of my EF Core tests. But while doing this, I hit the following error: ``` Message: Initialization...
If I have a table like ``` public class NullableHolder { [Key] public int ID { get; set; } public int? Value { get; set; } } ``` And I...