Content deleted Content added
No edit summary |
|||
Line 30:
</syntaxhighlight>
In contrast, the following makes use of an ORM-job API
<syntaxhighlight lang="csharp">
Line 37:
</syntaxhighlight>
The case above makes use of an object representing the storage repository and methods of that object. Other frameworks might provide code as static methods, as in the example below, and yet other methods may not implement an object-oriented system at all. Often the choice of paradigm is made
<syntaxhighlight lang="csharp">
Line 43:
</syntaxhighlight>
Usually, the framework will expose some filtering and querying functionality
<syntaxhighlight lang="csharp">
|