एक-एक संबंधों को तय करना और उनसे जुड़ी क्वेरी करना
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
दो इकाइयों के बीच एक-से-एक संबंध का मतलब है कि पैरंट इकाई का हर इंस्टेंस, चाइल्ड इकाई के एक ही इंस्टेंस से जुड़ा होता है. इसके अलावा, चाइल्ड इकाई का हर इंस्टेंस, पैरंट इकाई के एक ही इंस्टेंस से जुड़ा होता है.
उदाहरण के लिए, संगीत स्ट्रीमिंग ऐप्लिकेशन में, उपयोगकर्ता के पास उन गानों की लाइब्रेरी हो जिन पर उसका मालिकाना हक हो. हर उपयोगकर्ता के पास सिर्फ़ एक लाइब्रेरी होती है और हर लाइब्रेरी, सिर्फ़ एक उपयोगकर्ता से जुड़ी होती है. इसलिए, User
इकाई और Library
इकाई के बीच वन-टू-वन रिलेशनशिप होता है.
अपने डेटाबेस में एक-से-एक संबंधों को तय करने और उनसे जुड़ी क्वेरी करने के लिए, यह तरीका अपनाएं:
- रिश्ते की जानकारी दें: दोनों इकाइयों के लिए क्लास बनाएं. साथ ही, पक्का करें कि एक इकाई, दूसरी इकाई की प्राइमरी कुंजी का रेफ़रंस दे.
- इकाइयों की क्वेरी करें: नई डेटा क्लास में संबंध को मॉडल करें और उससे जुड़ा डेटा पाने का तरीका बनाएं.
संबंध तय करना
एक-एक के हिसाब से संबंध तय करने के लिए, पहले अपनी दोनों इकाइयों के लिए एक कक्षा बनाएं. किसी एक इकाई में ऐसा वैरिएबल होना चाहिए जो दूसरी इकाई की प्राइमरी की का रेफ़रंस हो.
Kotlin
@Entity
data class User(
@PrimaryKey val userId: Long,
val name: String,
val age: Int
)
@Entity
data class Library(
@PrimaryKey val libraryId: Long,
val userOwnerId: Long
)
Java
@Entity
public class User {
@PrimaryKey public long userId;
public String name;
public int age;
}
@Entity
public class Library {
@PrimaryKey public long libraryId;
public long userOwnerId;
}
इकाइयों से क्वेरी करना
उपयोगकर्ताओं और उनसे जुड़ी लाइब्रेरी की सूची के बारे में क्वेरी करने के लिए, आपको पहले दोनों इकाइयों के बीच एक-से-एक संबंध को मॉडल करना होगा.
इसके लिए, एक नई डेटा क्लास बनाएं, जहां हर इंस्टेंस में पैरंट इकाई का एक इंस्टेंस और चाइल्ड इकाई का उससे जुड़ा इंस्टेंस हो. चाइल्ड इकाई के इंस्टेंस में @Relation
एनोटेशन जोड़ें. साथ ही, parentColumn
को पैरंट इकाई के प्राइमरी की कॉलम के नाम पर और entityColumn
को चाइल्ड इकाई के उस कॉलम के नाम पर सेट करें जो पैरंट इकाई की प्राइमरी की कोड का रेफ़रंस देता है.
Kotlin
data class UserAndLibrary(
@Embedded val user: User,
@Relation(
parentColumn = "userId",
entityColumn = "userOwnerId"
)
val library: Library
)
Java
public class UserAndLibrary {
@Embedded public User user;
@Relation(
parentColumn = "userId",
entityColumn = "userOwnerId"
)
public Library library;
}
आखिर में, DAO क्लास में एक ऐसा तरीका जोड़ें जो पैरंट इकाई और चाइल्ड इकाई को जोड़ने वाली डेटा क्लास के सभी इंस्टेंस दिखाता हो. इस तरीके के लिए, Room को दो क्वेरी चलानी होंगी. इसलिए, आपको इस तरीके में @Transaction
एनोटेशन जोड़ना चाहिए. इससे यह पक्का होता है कि पूरा ऑपरेशन, क्रम से चलता रहे.
Kotlin
@Transaction
@Query("SELECT * FROM User")
fun getUsersAndLibraries(): List<UserAndLibrary>
Java
@Transaction
@Query("SELECT * FROM User")
public List<UserAndLibrary> getUsersAndLibraries();
इस पेज पर मौजूद कॉन्टेंट और कोड सैंपल कॉन्टेंट के लाइसेंस में बताए गए लाइसेंस के हिसाब से हैं. Java और OpenJDK, Oracle और/या इससे जुड़ी हुई कंपनियों के ट्रेडमार्क या रजिस्टर किए हुए ट्रेडमार्क हैं.
आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-27 (UTC) को अपडेट किया गया."],[],[],null,["# Define and query one-to-one relationships\n\nA *one-to-one relationship* between two entities is a relationship where each\ninstance of the parent entity corresponds to exactly one instance of the child\nentity, and the reverse is also true.\n\nFor example, consider a music streaming app where the user has a library of\nsongs that they own. Each user has only one library, and each library\ncorresponds to exactly one user. Therefore, there is a one-to-one relationship\nbetween the `User` entity and the `Library` entity.\n\nFollow these steps to define and query one-to-one relationships in your\ndatabase:\n\n1. **[Define the relationship](#define)**: Create classes for both entities, ensuring one references the other's primary key.\n2. **[Query the entities](#query)**: Model the relationship in a new data class and create a method to retrieve the related data.\n\nDefine the relationship\n-----------------------\n\nTo define a one-to-one relationship, first create a class for each of your two\nentities. One of the entities must include a variable that is a reference to the\nprimary key of the other entity. \n\n### Kotlin\n\n @Entity\n data class User(\n @PrimaryKey val userId: Long,\n val name: String,\n val age: Int\n )\n\n @Entity\n data class Library(\n @PrimaryKey val libraryId: Long,\n val userOwnerId: Long\n )\n\n### Java\n\n @Entity\n public class User {\n @PrimaryKey public long userId;\n public String name;\n public int age;\n }\n\n @Entity\n public class Library {\n @PrimaryKey public long libraryId;\n public long userOwnerId;\n }\n\nQuery the entities\n------------------\n\nTo query the list of users and corresponding libraries, you must first model the\none-to-one relationship between the two entities.\n\nTo do this, create a new data class where each instance holds an instance of the\nparent entity and the corresponding instance of the child entity. Add the\n[`@Relation`](/reference/kotlin/androidx/room/Relation) annotation to the instance of the child entity, with\n[`parentColumn`](/reference/kotlin/androidx/room/Relation#parentcolumn()) set to the name of the primary key column of the parent\nentity and [`entityColumn`](/reference/kotlin/androidx/room/Relation#entitycolumn()) set to the name of the column of the child entity\nthat references the parent entity's primary key. \n\n### Kotlin\n\n data class UserAndLibrary(\n @Embedded val user: User,\n @Relation(\n parentColumn = \"userId\",\n entityColumn = \"userOwnerId\"\n )\n val library: Library\n )\n\n### Java\n\n public class UserAndLibrary {\n @Embedded public User user;\n @Relation(\n parentColumn = \"userId\",\n entityColumn = \"userOwnerId\"\n )\n public Library library;\n }\n\nFinally, add a method to the DAO class that returns all instances of the data\nclass that pairs the parent entity and the child entity. This method requires\nRoom to run two queries. You should therefore add the [`@Transaction`](/reference/kotlin/androidx/room/Transaction)\nannotation to this method. This ensures that the whole operation runs\natomically. \n\n### Kotlin\n\n @Transaction\n @Query(\"SELECT * FROM User\")\n fun getUsersAndLibraries(): List\u003cUserAndLibrary\u003e\n\n### Java\n\n @Transaction\n @Query(\"SELECT * FROM User\")\n public List\u003cUserAndLibrary\u003e getUsersAndLibraries();"]]