About 50 results
Open links in new tab
  1. class - 'POCO' definition - Stack Overflow

    Oct 30, 2008 · Just happens to fly by the POCO stuff. The official document now has the definition: A POCO—or a plain old class/CLR object—is a .NET data structure that contains only public properties …

  2. .net - What does POCO mean? - Stack Overflow

    The POCO C++ Libraries aim to be for network-centric, cross-platform C++ software development what Apple's Cocoa is for Mac development, or Ruby on Rails is for Web development — a powerful, yet …

  3. Plain Old CLR Object vs Data Transfer Object - Stack Overflow

    May 27, 2018 · Here's the difference: POCO describes an approach to programming (good old fashioned object oriented programming), where DTO is a pattern that is used to "transfer data" using …

  4. c# - What is POCO in Entity Framework? - Stack Overflow

    Jan 27, 2017 · I just started learning POCO but I cannot understand the usage and advantage. Even the following link of StackOverflow did not help me. what is Entity Framework with POCO Can anybody …

  5. Using JsonConvert.DeserializeObject to deserialize Json to a C# POCO ...

    9 Another, and more streamlined, approach to deserializing a camel-cased JSON string to a pascal-cased POCO object is to use the CamelCasePropertyNamesContractResolver. It's part of the …

  6. Is there a direct way to go from POCO to JsonNode?

    Oct 10, 2024 · JsonNode? jsonNode = JsonSerializer.SerializeToNode(poco); This way, you skip the overhead of serializing to a string first, making it a bit more efficient. Edit example:

  7. c# - what is Entity Framework with POCO - Stack Overflow

    Apr 20, 2010 · POCO stands for "Plain Old C# Object" or "Plain Old CLR Object", depending on who you ask. If a framework or API states that it operates on POCO's, it means it allows you to define …

  8. Correct usage of Poco C++ JSON for parsing data

    Mar 13, 2013 · The Poco C++ library doesn't seem to have corresponding objects. How do I for example use the json parser to create a object name consisting the JSON value at the tag name?

  9. How to pass a POCO class to .NET Core configuration

    Mar 20, 2018 · I am working on integration tests of .NET Core application and want to use some test configuration. My configuration is a POCO class that is configured via appsettings.json and then …

  10. Creating POCO classes for complex relationship scenario in EF core 7

    Jan 24, 2023 · I'm working with entityframework core 7 using code first approach. I have a typical scenario at least it's typical for me. I need to create 3 poco classes, which will eventually create 3 …