Entity framework core attach/update for child objects
up vote
0
down vote
favorite
I'm using entity framework core 2.1 and my database context contains of the follwing classes
public class MultiStringSetting
{
public int Id { get; set; }
public virtual IEnumerable<MultiString> Values { get; set; }
}
public class MultiString
{
public int Id { get; set; }
public string Value { get; set; }
}
Consider the following: I have 3 MultiString
objects in my database with id's 1, 2 and 3. My current MultiStringSetting
has MultiString
1 in its Values
. What i would like to do now is set the Values
of my MultiStringSetting
to 2 and 3, without removing MultiString
1 from my database. How can i achieve this? I tried some things like attach
and update
but both had no success for me.
Bonus question: What if i have the same scenario as above however i now have a list of MultiStringSetting
and i want to update them all.
.net-core entity-framework-core
add a comment |
up vote
0
down vote
favorite
I'm using entity framework core 2.1 and my database context contains of the follwing classes
public class MultiStringSetting
{
public int Id { get; set; }
public virtual IEnumerable<MultiString> Values { get; set; }
}
public class MultiString
{
public int Id { get; set; }
public string Value { get; set; }
}
Consider the following: I have 3 MultiString
objects in my database with id's 1, 2 and 3. My current MultiStringSetting
has MultiString
1 in its Values
. What i would like to do now is set the Values
of my MultiStringSetting
to 2 and 3, without removing MultiString
1 from my database. How can i achieve this? I tried some things like attach
and update
but both had no success for me.
Bonus question: What if i have the same scenario as above however i now have a list of MultiStringSetting
and i want to update them all.
.net-core entity-framework-core
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm using entity framework core 2.1 and my database context contains of the follwing classes
public class MultiStringSetting
{
public int Id { get; set; }
public virtual IEnumerable<MultiString> Values { get; set; }
}
public class MultiString
{
public int Id { get; set; }
public string Value { get; set; }
}
Consider the following: I have 3 MultiString
objects in my database with id's 1, 2 and 3. My current MultiStringSetting
has MultiString
1 in its Values
. What i would like to do now is set the Values
of my MultiStringSetting
to 2 and 3, without removing MultiString
1 from my database. How can i achieve this? I tried some things like attach
and update
but both had no success for me.
Bonus question: What if i have the same scenario as above however i now have a list of MultiStringSetting
and i want to update them all.
.net-core entity-framework-core
I'm using entity framework core 2.1 and my database context contains of the follwing classes
public class MultiStringSetting
{
public int Id { get; set; }
public virtual IEnumerable<MultiString> Values { get; set; }
}
public class MultiString
{
public int Id { get; set; }
public string Value { get; set; }
}
Consider the following: I have 3 MultiString
objects in my database with id's 1, 2 and 3. My current MultiStringSetting
has MultiString
1 in its Values
. What i would like to do now is set the Values
of my MultiStringSetting
to 2 and 3, without removing MultiString
1 from my database. How can i achieve this? I tried some things like attach
and update
but both had no success for me.
Bonus question: What if i have the same scenario as above however i now have a list of MultiStringSetting
and i want to update them all.
.net-core entity-framework-core
.net-core entity-framework-core
asked 10 hours ago
Gilian
1711110
1711110
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416147%2fentity-framework-core-attach-update-for-child-objects%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown