Commit 22e5bc1
Introduce ICslaObject interface for improved trimming support in CSLA 9.0 (#4738)
* Initial plan
* Initial plan for ICslaObject interface implementation
Co-authored-by: rockfordlhotka <[email protected]>
* Implement ICslaObject interface and update data portal interfaces
Co-authored-by: rockfordlhotka <[email protected]>
* Update IChildDataPortal and ChildDataPortal to use ICslaObject
Co-authored-by: rockfordlhotka <[email protected]>
* Fix build issues: Add missing using statements and revert global.json
Co-authored-by: rockfordlhotka <[email protected]>
* Add ICslaObject constraint to DataPortal<T> generic type parameter
Co-authored-by: rockfordlhotka <[email protected]>
* Fix constraint order: change to where T : notnull, ICslaObject
Co-authored-by: rockfordlhotka <[email protected]>
* Update to .NET 10 rc2
* Add polyfill for net462
* Solution now builds
* Update Polyfill package from 7.4.0 to 8.9.0 and remove RangeIndexPolyfill.cs
Co-authored-by: rockfordlhotka <[email protected]>
* Change Execute and ExecuteAsync methods to use ICommandObject instead of ICslaObject
Co-authored-by: rockfordlhotka <[email protected]>
* Change Create and Fetch methods to return ICslaObject instead of object
Co-authored-by: rockfordlhotka <[email protected]>
* Fix build errors due to ICommandObject usage
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: rockfordlhotka <[email protected]>
Co-authored-by: Rockford Lhotka <[email protected]>1 parent 2f0e3b3 commit 22e5bc1
File tree
37 files changed
+143
-99
lines changed- Source
- Csla.AspNetCore
- Csla.Blazor.WebAssembly
- Csla.Blazor
- Csla.Channels.Grpc
- Csla.Channels.RabbitMq
- Csla
- Core
- FieldManager
- DataPortalClient
- Server
- tests
- Csla.Blazor.Test
- Csla.Blazor.WebAssembly.Tests
- Csla.TestHelpers
- Csla.test
- DataPortal
- Fakes/Server/DataPortal
- csla.netcore.test
37 files changed
+143
-99
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
| |||
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
27 | | - | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
259 | 259 | | |
260 | 260 | | |
261 | 261 | | |
262 | | - | |
| 262 | + | |
263 | 263 | | |
264 | 264 | | |
265 | 265 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
246 | 246 | | |
247 | 247 | | |
248 | 248 | | |
249 | | - | |
| 249 | + | |
250 | 250 | | |
251 | 251 | | |
252 | 252 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
160 | 161 | | |
161 | 162 | | |
162 | 163 | | |
163 | | - | |
| 164 | + | |
164 | 165 | | |
165 | 166 | | |
166 | 167 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
154 | 154 | | |
155 | 155 | | |
156 | 156 | | |
157 | | - | |
| 157 | + | |
158 | 158 | | |
159 | 159 | | |
160 | 160 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
650 | 650 | | |
651 | 651 | | |
652 | 652 | | |
653 | | - | |
| 653 | + | |
654 | 654 | | |
655 | 655 | | |
656 | 656 | | |
| |||
670 | 670 | | |
671 | 671 | | |
672 | 672 | | |
673 | | - | |
| 673 | + | |
674 | 674 | | |
675 | 675 | | |
676 | 676 | | |
| |||
689 | 689 | | |
690 | 690 | | |
691 | 691 | | |
692 | | - | |
| 692 | + | |
693 | 693 | | |
694 | 694 | | |
695 | 695 | | |
| |||
709 | 709 | | |
710 | 710 | | |
711 | 711 | | |
712 | | - | |
| 712 | + | |
713 | 713 | | |
714 | 714 | | |
715 | 715 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
14 | | - | |
| 14 | + | |
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| |||
0 commit comments