Talk:Object–relational mapping: Difference between revisions

Content deleted Content added
Incorrect C# code?: new section
Implementing WP:PIQA (Task 26)
 
(2 intermediate revisions by one other user not shown)
Line 1:
{{WikiProject Computingbanner shell|class=startStart|importance=}}
{{WikiProject Computing|importance=}}
}}
 
==Introduction==
Line 165 ⟶ 167:
 
This example C# line is given as a way to find the person with ID 10:
 
: var person = Person.Get(Person.Properties.Id == 10);
 
However, it looks wrong to me. (Person.Properties.Id == 10) would yield a bool: either true or false. It isn't a lambda or closure or a method that can run to perform a search. [[User:Equinox|Equinox]] [[User_talk:Equinox|◑]] 15:36, 7 March 2023 (UTC)
 
: (Weeks later: I have removed the incorrect code.) [[User:Equinox|Equinox]] [[User_talk:Equinox|◑]] 05:51, 23 March 2023 (UTC)