Is there a limit to the number of fields that can be declared in the C# class for trigger detecting?
Because when I have a table 1 in SQL Server with 14 fields, and when I declare all the fields in the C# class it works from the OK trigger (INSERT, UPDATE and DELETE) but...
Because when I have a table 2 in SQL Server with 145 fields, and when I declare all the fields in the C# class, no trigger works (INSERT, UPDATE and DELETE)
Hello
Is there a limit to the number of fields that can be declared in the C# class for trigger detecting?
Because when I have a table 1 in SQL Server with 14 fields, and when I declare all the fields in the C# class it works from the OK trigger (INSERT, UPDATE and DELETE) but...
Because when I have a table 2 in SQL Server with 145 fields, and when I declare all the fields in the C# class, no trigger works (INSERT, UPDATE and DELETE)
What I can do???