

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is aggregation in C#?
Aggregation is a directional relation between objects in C#. It is the relationship between objects.
For example, Employee and Address
An Employee is associated with a single Department, whereas a Department can have more than one employee. Let us see an example of Employee and Address −
public class Address { . . . } public class Employee { private Address addr; public Employee (Address addr) { this.addr = addr; } . . . }
- Related Questions & Answers
- What is Data Aggregation?
- What is aggregation in Java?
- What is Data Cube Aggregation?
- Aggregation in Java
- MongoDB aggregation framework match OR is possible?
- What are the difference between Composition and Aggregation in C#?
- Why use aggregation in Java?
- Composition vs Aggregation in C#
- Perform aggregation sort in MongoDB?
- MongoDB divide aggregation operator?
- MongoDB aggregation and projection?
- Different Aggregation functions in SAP HANA
- Association, Composition and Aggregation in Java
- Association, Composition and Aggregation in C#
- Aggregation in MongoDB for nested documents?
Advertisements