Ownsone ef core github. I assume it has to do with the fact that in EF Core 3.
Ownsone ef core github. snake_case) efcore/EFCore.
Ownsone ef core github You signed out in another tab or window. 0 of the EF Core provider: EnableDynamicJsonMappings() affects the older JSON POCO support that has existed for several versions. If you want to configure the index on specific owned entity only then either you need to create a another derived configuration and apply that where applicable or configure index in the configuration of owner (IvaEntityConfiguration in this case) Mine went from nearly negligible (around 1ms) with ef core 2. Nov 27, 2022 · Entity Configuration using IsRowVersion. 0 owned entities are now optional but how do I tell EF that they are actually required? Oct 16, 2019 · When I use the Fluent API to map the Name objects properties to columns within the Profile table I specify that they are required. I have 2 entity types A and B, both owns an entity called "Image", A owns 5 Images, B owns 1. Id); //with only the next line still the exception: The entity type 'Blog' requires a primary key to be defined //modelBuilder. Whats happening is, it's creating a new table that references the parent entity. 0 rc2. 0 75 21 (1 issue needs help) 6 Updated Jan 14, 2025 Jun 13, 2024 · Edit: EF Core Postgresql version : "Npgsql. Exception message:多次为 't' 指定了列 'Id0'。 Jul 6, 2018 · Describe what is not working as expected. Builders. Entity<Blog>(). And it works pretty well for 1:1 relationships. Text. We will re-assess the backlog following the this release and consider this item at that time. And Comment itself has an owned type, User. Id, sb => sb. The entity containing an owned entity type is its owner . When I changed the code to . My entity classes are set up as follows: [DebuggerDisplay("{Name,nq}")] public class Country { public int Id { [DebuggerStepThrough] get; [ Apr 27, 2020 · Note the unneeded and undesired nested select just to get Address properties. 0 , Backlog Oct 2, 2023 Describe what is not working as expected. Even with some gaps between the canonical value object pattern in DDD and the owned entity type in EF Core, it's currently the best way to persist value objects with EF Core. A type used as a property type cannot also be used as an entity type. Set() EF Core allows you to model entity types that can only ever appear on navigation properties of other entity types. Jul 13, 2023 · You signed in with another tab or window. 2) Database: MySQL 8+ (InnoDB) Operating system: Windows 10 PRO Nov 16, 2023 · Npgsql's EnableDynamicJsonMappings() has nothing to do with the new ToJson() support introduced in version 8. I have a Parent type with a child owned type, and the child owned type has a collection of owned types Grandchildren . 2 Database provider: Microsoft. ChineseInfo_Author has no maxLength. snake_case) efcore/EFCore. [!code-csharpOwnsOne] If the ShippingAddress property is private in the Order type, you can use the string version of the OwnsOne method: Aug 8, 2023 · @windofny1 UserId is both mapped as a non-entity type through its use as a key, and then also as an entity type in the call to OwnsOne. If you want to override previous configuration first Oct 14, 2019 · After configuring owned type with IsRequired() as shown below, generated migration code ignores it, and sets nullable to true. In EF Core 3. Is this a bug? It was not listed among the breaking changes introduced by EF Core 3. 5 seconds with ef core 3. punted-for-6. net7. 0, it worked in EF Core 3. NET 6. Models. type-bug Milestone Backlog Documentation for Entity Framework Core and Entity Framework 6 - dotnet/EntityFramework. 0 (EF7) release, but moved out due to resource constraints. The other part of the reason is that all the entities that are not the Event entity, really don't exist out of the Event, they are not shared between other Events, Checkpoints and so on. Apr 1, 2018 · EF Core version: 2. NET Command Line Tools: 2. May I ask why the emailNotify property came back as null despite having data in it in database. 1 Oct 16, 2017 · Using EF Core 2. PostgreSQL" Version="7. Is there a good explanation with examples? Include provider and version information. Nov 1, 2019 · I am using EF Core 2. What I understand from that issue is that it currently isn't possible to select all the types based on the base class as the base class itself is also considered one of the types instead of all/any of the types and if not mapped it will cause all the types to be filtered out and get an empty result. AnOwnedTypeWithOwnedProperties) => owner is returning an empty instance for the navigation property of the owned type with null values for all properties of the owned type (doesn't work as expected). NullReferenceException: 'Object referen Nov 13, 2020 · Owned type can't be used as primary key in EF Core 5. 1. When I add migration, EF doesn't create fields for the owned entity properties. I'm using the type on two different properties in another entity. OwnsOne(p => p. InvalidOperationException: Sequence contains no elements { builder. Addresss), but OwnedNavigationBuilder<TEntity, TRelatedEntity> don't have anything like "IsRequired" (for the Customer. Nov 6, 2019 · It is also possible to use the OwnsOne method in OnModelCreating to specify that the ShippingAddress property is an Owned Entity of the Order entity type and to configure additional facets if needed. I configured them the same way using "OwnsOne", but when q May 21, 2018 · Note--see comments for actual issue. Oct 9, 2022 · Ideally, of the owning entity type is configured as temporal, then owned entities mapped to the same table should not need additional configuration to make use of the temporal table, with the same PeriodStart and PeriodEnd columns. InvalidOperationException: Entity type 'ContactInfo' is an optional dependent using table sharing and containing other dependents without any required non shared property to identify whether the entity exists. Ignore' in 'OnModelCreating'. This worked by mapping the property from the owned type a Oct 28, 2017 · I was having trouble with it earlier. var firstNameOriginal = context. SqlServer The text was updated successfully, but these errors were encountered: Dec 15, 2017 · An aggregateRoot class public class Testcalss { public int Id { get; protected set; } public string Name { get; private set; } public string Description { get; private set; } public Address HomeAdd This means that it is not planned for the next release (EF Core 7. However, this might not be an issue if it is constrained to within an aggregate ( #1985 ) since the entire aggregate graph must be loaded by definition. 0 rc2 of ef core. InvalidOperationException: The entity type 'EFError1. How I can make same with Entity Framework? Include provider and version information. TableInfo. 1, adding a model with a custom type as primary key worked fine. Nov 6, 2019 · EF Core allows you to model entity types that can only ever appear on navigation properties of other entity types. 0 Operating system: Windows 11 Pro IDE: Visual Studio 2022 Version 17. Whats expected to happen is, i Nov 28, 2022 · ajcvickers added the punted-for-8. Without using lazy loading this works as expected, but as soon as lazy loading is enabled it all fall to pieces. 23419. 2 & here are my entity classes. I assume it has to do with the fact that in EF Core 3. Net 7. Further technical details. - dotnet/efcore May 31, 2019 · //with only the next line you get a exception "The entity type 'Blog' requires a primary key to be defined" //modelBuilder. builder. EntityFrameworkCore; using TestContext context = new(); Thing thing1 = new() { Data = new Dic Jan 14, 2020 · In EF Core 3. Apr 17, 2018 · Using a complex type did work with 2. NET Core 3. LoadData[T](DbContext context, IList`1 entities, Boolean loadOnlyPKColumn) at EFCore. type-enhancement Further technical details. I couldn't find any better explantion or article googling. SqlServer 2. Thanks in advance EF Core wizards. 2. These are called owned entity types . This, by the way, is true regardless of whether the entity type is owned or not. InvalidOperation when trying to bulk update (with RelationalQueryableExtensions. Mar 21, 2024 · EF Core version: 8 Database provider: Microsoft. DataSeeding example code from the EF Core documentation, I am adding another owned type, Comment, to the Post entity. 2 Operating system: Windows 10 64-bit IDE: Visual Studio 2017 15. The entity containing an owned entity type is its owner. Entity<Order>(). public class Money { public Currency Currency { get; set; } public decimal Amount { get; set; Jan 17, 2019 · Issue summary We have been using EF Core for 6 months now, and recently, after updating our project from 2. EF Core version: 2. x reference navigations to owned entity types cannot be null unless they are explicitly mapped to a separate table from the owner. Docs. NET. It has a model as property which I configured to be an owned entity. 1:N is where things start to become a bit problematic. 8. 0 May 7, 2020 · Inside my entity Submission: public class Submission { public string Id { get; private set; } public ObjectData ObjectData {get; private set;} } I have an owned entity of type ObjectData: public class ObjectData { // Properties p Mar 2, 2022 · EF Core version: 6. Id' and 'Order. Either manually configure the relationship, or ignore this property using the '[NotMapped]' attribute or by using 'EntityTypeBuilder. GeoLocation, a => { a. Jul 31, 2018 · Filtering on OwnsOne Navigation's property throws null reference exception. I configured that entity to use . Net7 I encountered a bug with the Own-Components in our Context Model. When I try to seed data into nested ow Sep 18, 2020 · Setting the column name via SetColumnName() in OnModelCreating() seems to break OwnsOne() entities. Feb 14, 2022 · I'm using Microsoft. The descriptions sound Klingon to me. Jul 26, 2019 · Hello. Jan 16, 2024 · When using EF Core 8 ComplexProperty it would be nice to have a way to reference other entities from complex properties. 0, and I have a DateTimeSpan class with properties for Start and End. I guess it would make more sense if we can get the exception thrown in this case or get the values filled. . 0 implementation available I created two branches doing the same tests using NpgSql on 8. Jan 30, 2023 · Hello, after upgrading our Repositiory to . Dec 5, 2018 · The problem is: JapaneseInfo_Author has no maxLength. Jul 29, 2021 Feb 3, 2023 · Don't forget that owned types are not a good representation for value objects. Because I was using Oracle which doesn't have a 8. 1 RC1. 0 Originally planned for the EF Core 8. This used to work as expected in EF Core 3 (and v5-preview4 I'm pretty sure) but in v5-RC1 the following exception occurs: The keys {'Id' Feb 12, 2020 · Then EF Core picks up later changes, even without replacing the Contact field. Dec 15, 2022 · Hi @roji EFCore. Jan 12, 2022 · EF Core Add-Migration Says : Unable to determine the relationship represented by navigation 'Demo. OwnsOne(b => b. 0 (EF8) release, but moved out due to resource constraints. I don't understand what each one is for. Data. Jun 15, 2022 · Ask a question How to get column names of owned entity types. If all the other properties in the ChildType aside from the grandchildren collection are null, the grandchildren will fail to load and the Child property is null. 1526 IDE: Visual Studio 2022 17. 1 (I couldn't reproduce it in 2. Android IDE: Visual Studio for Mac Nov 29, 2021 · Hello everyone :) Have code like below public class Main { public Guid Id { get; set; } public Status Status { get; set; } } public abstract class Status { public DateTime Date { get; set; } } publ Jan 10, 2020 · Am I doing something wrong on the declaration of index or this is a missing feature on EF Core and if so is there any way around this issue. EF Core version: 6. Make sure to vote (👍) for this issue if it is important to you. Core 2. EF Core version: Microsoft. Thanks for Your time! Will use another approarch. EF Core version: 3. HasKey(id => id. g. OrderId' are both mapped to column 'Id' in 'Orders' but are configured to use different default values ('NEXT VALUE FOR OrderNumbers' and ''). 1 Preview 6. Samples. Without use of InMemoryDatabaseRoot entities can be saved, but with use - and no other changes two unexpected behaviors occur. Collaborate with us on GitHub The source for this content can be found on GitHub, where you can also create and review issues and pull requests. We are heavy users of Complex Types, and in the EDMX model (which was amazing for the teams of all sizes by the way!) we were able to "map" a collection of existing columns "as they were" into a Complex Type. So I'm not sure what extra database calls you're referring to. NullReferenceException HResult=0x80004003 Message=Object reference not set to an instance of an object. SqlServer Target framework: . This is not supported by EF Core. CORE against SQLServer w/temporal tables AND the use of owned entity types. 0-rc. 1 to 2. unset (null) property A gets the value of B; if both are in fact set to different object, ef throws claiming duplicate key; Steps to reproduce Aug 14, 2019 · @AndriySvyryd @ajcvickers Gentlemen this inability to set up an existing table to have an Owned Type property stops our porting away from EF6 to EF Core. The owned type is not being included on a query that includes a navigation property of the owner type. We previously had our own implementation of ExecuteUpdate prior to . OnAdd SomeProperty (string) Navigations: Relateds (List<Related>) Collection ToDependent Related Inverse: Owned Keys: OwnerId PK Foreign keys: Owned {'OwnerId'} -> Owner {'OwnerId'} Unique Ownership ToDependent: Owned Cascade EntityType: Owner Properties: OwnerId (int) Required PK Mar 29, 2023 · In EF Core 3. 0 If model has non virtual complex type property сonfigured with key "OwnsOne" #2 SergeyIlyin opened this issue Aug 24, 2017 · 1 comment Comments Sep 26, 2017 · area-o/c-mapping closed-fixed The issue has been fixed and is/will be included in the release indicated by the issue milestone. Nov 23, 2022 · @ajcvickers thank you for your response. I made same trick with nhibernate many years ago (component mapping). Reload to refresh your session. If you assign a new Address instance with identical fields and call SaveChanges, EF detects that nothing has changed and doesn't persist anything. Now with Dec 15, 2018 · Describe what is not working as expected. - dotnet/efcore Mar 26, 2023 · Is there an existing issue for this? I have searched the existing issues Description When I configure an EfCore entity relationship using OwnsOne, and the owned object also a value object has a DateTime property. So we used to have something like: build Mar 3, 2019 · Owned entity types seem to not being mapped properly when migrating in version 2. Jul 18, 2022 · This is needed to make some "expression magic" for selecting different currency data. 3. The PersonalInformation owned type on Artists is not being included by default when I execut Dec 19, 2018 · System. EntityF May 21, 2018 · Note that adding semantics for a principal with required dependents is a departure for EF Core and can cause a lot of confusion when this cannot consistently be enforced by EF. Jun 7, 2022 · Use the nested builder in OwnsOne or OwnsMany on the owner entity type builder to further configure this type. label Oct 2, 2023 ajcvickers modified the milestones: 8. 0 owned entities are now optional but how do I tell EF that they are actually required? abstract member OwnsOne : Type * string -> Microsoft. Dec 11, 2020 · @ajcvickers Most of the reason is that we already have some data in Cosmos (there is an example bellow), and wanted to migrate to ef from what we are using right now. HasColumnName(nameof(GeoL Nov 13, 2018 · Saved searches Use saved searches to filter your results more quickly Dec 14, 2020 · I am also facing a similar issue with EF SqlServer 5. 1 and I have this value object in my model, which is then configured as an owned type for properties such as "Price". 0. I have some classes with an orders information: public class OrderProfile { [Key] public Guid Id { get; set; } public int Car Jun 24, 2023 · I want to save these models into a SQL Server database as JSON: public class VersionEntity { public VersionEntity() { } public VersionItemEntity Items { get; set; } public long ProjectId { get; set; } public int TenantId { get; set; } } Oct 3, 2018 · Hi all, I'using EF Core 2. Sqlite Operating system: MacOS Mojave Built for: Xamarin. When I create the migration it says nullable is true. 👍 8 MorenoGentili, groege, dsidedp, brenwebber, bobwah, pmfriedman, dstj, and LuizPanariello reacted with thumbs up emoji 😕 1 sikora507 reacted with confused emoji Oct 10, 2023 · However, there's definitely no plan to allow complex type to work with dynamic/object; the whole point of complex type modeling is that EF is aware of the type and it's structure; that's the opposite of dynamic mapping, where EF knows nothing about the shape and contents of your JSON document. 2, any new migration script has a ton of unexpected DropForeignKey, DropUniqueConstraint, DropColumn statements. I've found incorrect complex types loading in EF Core Preview7 (in the Preview5 my code works normally). EF Core is a modern object-database mapper for . 0 Dec 31, 2020 · Hi!, I'm working in my project with entity that use value objects, I have read in the doc that if you want work with value objects you must use owned types. pDemoes' of type 'ICollection<PDemo>'. 3 Entity Framework Core . Value)); //with the next two lines there is the exception Jul 30, 2023 · This is not how EF works. OwnedNavigationBuilder Public Overridable Function OwnsOne (ownedType As Type, navigationName As String) As ReferenceOwnershipBuilder Mar 29, 2021 · Model: EntityType: Owned Properties: OwnerId (no field, int) Shadow Required PK FK AfterSave:Throw ValueGenerated. OwnsOne : Type * string -> Microsoft. 6) Database provider: Microsoft. Stack trace: at Microsoft. x the columns for owned entity types mapped to the same table as the owner are always marked as nullable. JapaneseInfo_Memo is missing. Net. Microsoft. 1 to perform queries against a Cosmos DB, but the problem I'm facing is that whenever I include in the Select any property that is either an object or a collection/array (mapped as "OwnsOne" and "OwnsMany"), instead of querying only the selected properties, it actually selects the entire Oct 14, 2023 · See the update on the Declaration table where the update succeeds because there is no OwnsOne property in de target table. Consider the following entities and DBContext configuration: public class MyEntity { public int Id { get; set; } public Own Jul 16, 2020 · I have an Entity which is complex type. Metadata. Dec 5, 2019 · I have this issue where the root entity contains an owned collection, which owns a nested inner collection and an other entity (the model is just made up for demo purposes) The persisted document looks like this: { "Id": "9a215264-ab60-4 Jan 9, 2019 · Starting with the EFModeling. 0 Preview 2. Property(e => e. 0 Nullability: enabled Operating system: Win10 21H1 19043. But when I configure owned entity property to be not null, it is not working. I want EF Core to load all of Address properties as if Address could not be null (the internal properties could be null, but not Customer. I realized the issue I was having was because I gave the property a default value (Owned { get; set; } = new Owned();) since having a non-null value is an EF requirement. 1: calling LastOrDefault(), Last(), LastOrDefaultAsync() or LastAsync() on entity with OwnsOne throws InvalidOperationException. Scenario: "Order" entity and "ShippingAddress" as owned entity, configured as: modelBuilder. Mar 8, 2024 · Saved searches Use saved searches to filter your results more quickly EF Core is a modern object-database mapper for . OwnedNavigationBuilder override this. BigBoss class public class BigBoss { public Guid Id { get; set; } public SmallBoss SmallBoss { get; set; } // other stuff Feb 25, 2022 · area-save-changes customer-reported punted-for-7. An owned entity type allows you to map types that do not have their own identity explicitly defined in the domain model and are used as properties, such as a value object. Nov 26, 2018 · Saved searches Use saved searches to filter your results more quickly Jul 28, 2023 · I'm facing an issue while trying to seed data for the Country entity using Entity Framework Core. Steps to reproduce I have a entity like this, with a property that i Mar 31, 2020 · In EF core there are 2 ways of mapping owned entities sharing the same table composed of only one property. Sep 15, 2023 · EF Core version: 8. Jan 3, 2024 · Hello! I'm not sure if this is a bug or intended behavior, but I'm trying to have a Patient entity that can have a dynamic amount of phone numbers by making its property public List<PhoneNumber> PhoneNumbers { get; set; } = new(); a JSON Nov 5, 2020 · OwnsOne relationship with OwnsOne relationship(s) (AnAggregateRoot. Aug 27, 2021 · This might not well be a bug, but intended behavior - however, see below. When not specifying the relationship, entity framework creates n Aug 24, 2017 · EF. Address property). NamingConventions’s past year of commit activity C# 783 Apache-2. 4 Database Provider: Microsoft. EntityFrameworkCore Mar 29, 2023 · In EF Core 2. These are called owned entity types. in my Jul 29, 2021 · smitpatel changed the title EF Core gets the whole owned entity as NULL if one of it's properties is NULL Migrations: Adding a required property on owned type makes existing data to appear deleted from EF Core. @roji adviced me to try using 8. 1-rtm-125 Apr 17, 2023 · I seem to be unable to serialize dictionaries in a JSON column with the new JSON support for SQL Server using System. OrderDetails#OrderDetails. Latitude) . If you are seeing an exception, include the full exceptions details (message and stack trace). BulkExtensions StackTrace: at EFCore. You switched accounts on another tab or window. When I save my entity with its repository this work perfectly, but when I try to Jan 26, 2018 · Our current scenario is using EF. 0 punted-for-7. 0 Database Provider: Microsoft. NET 8. ToTable(nameof(Employee)); builder. ChineseInfo_Memo is missing. 0). Net 8 framework and and value type as a complexType and using sample below Its work. EntityFrameworkCore. HasKey(x Attempting to use this model will now throw the following exception: System. OwnsOne() for both DateTimeSpan properties. BulkExtensions. 6 Database provider: Microsoft. The idea is the same as we have with OwnsOne when owning property is not a separate entity but a subset of columns, Jun 10, 2022 · Makes sense. Mapping of collections of FKs is tracked by #31845. HasConversion<byte[]> for Sql Server fails if derived entity uses OwnsOne config #29689 Closed nhwilly opened this issue Nov 27, 2022 · 2 comments · Fixed by #29730 Apr 29, 2020 · Owning entity has two members of same type, both marked with OwnsOne. @ajcvickers They are the closest/only thing EfCore offers for them though. Name, but while using it it simply throws: Exception message:System. 0 Mar 12, 2019 · Exception message: System. on is tu use the OwnsOne and another one is to use HasConversion what I found unexpected was that using the latter doesn't make t Feb 25, 2018 · Is it possible to use a property of nested owned type as a foreign key for one to many relationship? I was not able to achieve this. EntityFrameworkCore 8. 18) Target framework: (. However, keep in mind that there are many other high priority features with which it will be competing for resources. 6. Json; using Microsoft. 0 Originally planned for the EF Core 7. Oct 18, 2019 · When I use the Fluent API to map the Name objects properties to columns within the Profile table I specify that they are required. NamingConventions causing EF Core 7 Json Column OwnsMany thows System. 0-preview1-final but broke with the latest preview. 1 (with a workaround). Exception message: Object reference not set to an instance of an object. Source=EFCore. Without using the filter, I can still get the Country. May 5, 2023 · EF Core throws a System. 18" Target Framework : . PercentageConfiguration applies configuration of all Percentage owned entities. 2 to 1. CreateInstance[T](DbContext context, IList`1 entities, OperationType operationType, BulkConfig Nov 15, 2017 · > dotnet ef migrations add AddOrders … 'Order. Cosmos 6. net types which are actually json columns in the database, to the native support for Json columns in ef core 7. FirstOrDefault is working. 2 Database provider: (e. May 24, 2023 · AndriySvyryd changed the title Ef Core 8 Preview, mapping POCO Object into JSON column without OwnsOne/OwnsMany Map related entities for JSON columns as owned by convention Oct 19, 2023 yinzara mentioned this issue Dec 5, 2024 Entity Framework Core plugin to apply naming conventions to table and column names (e. SubAddress' cannot be added to the model because a weak entity type with the same name already exists. Apparently EF doesn't allow updating the property either, and having a default value was triggering that. using postgresql snake_case naming convention leads to owned types getting stored in separate tables i've read that, by convention, owned types are stored in the same table as their owners. NET Framework 4. Include your code public class MultiString { public string? Chinese { get; set; } public string? English { get; set; } } public class A Hi, This is just a question I need an answer, to make generated SQL more performant. OwnsOne<GeoLocation>(e => e. It supports LINQ queries, change tracking, updates, and schema migrations. 6 Database provider: (MySql. 0 (200k rows in the table). ExecuteUpdate<TSource> (link) (or delete) property of an owned entity through the owner. Apr 5, 2022 · The documentation for OwnsOne shows 6 overloads, but has no examples. SqlServer) Jul 10, 2023 · We are trying to migrate from the HasConversion option to map ef core properties to . ShippingAddress); Issue: While updating Mar 20, 2018 · This means that it is not planned for the next release (EF Core 6. Original issue: I'm trying constructor injection feature of EF Core 2. Dec 5, 2019 · @Abcdma - There are few points to remember here.
vnpasm rnuv nlkjpf wmyxfqe wgm dxz rgar euxf viw vvaqs
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}