EntityFrameworkCore - Classes and Entity distinctionDoes this Entity Repository Service example fit into Domain-Driven Design?How can I get Id of inserted entity in Entity framework?Symfony 2 entity join or doctrine query joinEntity Framework 7 Class Library - seeding/automatic migrationsEFCore Base entity model properties with private setters - migration bizarre behaviorEF Core 2.0 Unable to Determine RelationshipMany to many relationship on same class not workingSymfony 3 Object of class could not be converted to stringHow can I use session in service class for entity framework core global filters?“The owned entity type requires to be referenced from another entity type via a navigation”
Why does Kotter return in Welcome Back Kotter?
What would happen to a modern skyscraper if it rains micro blackholes?
Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)
Maximum likelihood parameters deviate from posterior distributions
Watching something be written to a file live with tail
When a company launches a new product do they "come out" with a new product or do they "come up" with a new product?
How is it possible to have an ability score that is less than 3?
RSA: Danger of using p to create q
LaTeX: Why are digits allowed in environments, but forbidden in commands?
Languages that we cannot (dis)prove to be Context-Free
Revoked SSL certificate
Why is consensus so controversial in Britain?
How to format long polynomial?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Codimension of non-flat locus
How to determine what difficulty is right for the game?
Intersection point of 2 lines defined by 2 points each
Is it possible to do 50 km distance without any previous training?
dbcc cleantable batch size explanation
Do I have a twin with permutated remainders?
What does "Puller Prush Person" mean?
Add text to same line using sed
strTok function (thread safe, supports empty tokens, doesn't change string)
EntityFrameworkCore - Classes and Entity distinction
Does this Entity Repository Service example fit into Domain-Driven Design?How can I get Id of inserted entity in Entity framework?Symfony 2 entity join or doctrine query joinEntity Framework 7 Class Library - seeding/automatic migrationsEFCore Base entity model properties with private setters - migration bizarre behaviorEF Core 2.0 Unable to Determine RelationshipMany to many relationship on same class not workingSymfony 3 Object of class could not be converted to stringHow can I use session in service class for entity framework core global filters?“The owned entity type requires to be referenced from another entity type via a navigation”
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
Just been writing up my models and dbcontext using a code first approach for EFCore and i've hit a small problem... specifically with classes and generating migrations.
It seems with entityframework any class is seen as an entity/table (my assumptions so far) but what if I want a class to be a list of fields extended onto my entity?
For example:
public class Person
public int Id get; set;
public string Name get; set;
public Address AddressDetails get; set;
public class Address
public string AddressLine1 get; set;
public string AddressLine2 get; set;
public string AddressLine3 get; set;
public string City get; set;
public string County get; set;
public string PostCode get; set;
How can I mark the address class as additional fields to the person entity as opposed to a separate entity?
Cheers,
Mark
migration entity-framework-core entity
add a comment |
Just been writing up my models and dbcontext using a code first approach for EFCore and i've hit a small problem... specifically with classes and generating migrations.
It seems with entityframework any class is seen as an entity/table (my assumptions so far) but what if I want a class to be a list of fields extended onto my entity?
For example:
public class Person
public int Id get; set;
public string Name get; set;
public Address AddressDetails get; set;
public class Address
public string AddressLine1 get; set;
public string AddressLine2 get; set;
public string AddressLine3 get; set;
public string City get; set;
public string County get; set;
public string PostCode get; set;
How can I mark the address class as additional fields to the person entity as opposed to a separate entity?
Cheers,
Mark
migration entity-framework-core entity
1
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
1
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05
add a comment |
Just been writing up my models and dbcontext using a code first approach for EFCore and i've hit a small problem... specifically with classes and generating migrations.
It seems with entityframework any class is seen as an entity/table (my assumptions so far) but what if I want a class to be a list of fields extended onto my entity?
For example:
public class Person
public int Id get; set;
public string Name get; set;
public Address AddressDetails get; set;
public class Address
public string AddressLine1 get; set;
public string AddressLine2 get; set;
public string AddressLine3 get; set;
public string City get; set;
public string County get; set;
public string PostCode get; set;
How can I mark the address class as additional fields to the person entity as opposed to a separate entity?
Cheers,
Mark
migration entity-framework-core entity
Just been writing up my models and dbcontext using a code first approach for EFCore and i've hit a small problem... specifically with classes and generating migrations.
It seems with entityframework any class is seen as an entity/table (my assumptions so far) but what if I want a class to be a list of fields extended onto my entity?
For example:
public class Person
public int Id get; set;
public string Name get; set;
public Address AddressDetails get; set;
public class Address
public string AddressLine1 get; set;
public string AddressLine2 get; set;
public string AddressLine3 get; set;
public string City get; set;
public string County get; set;
public string PostCode get; set;
How can I mark the address class as additional fields to the person entity as opposed to a separate entity?
Cheers,
Mark
migration entity-framework-core entity
migration entity-framework-core entity
edited Mar 21 at 22:39
David Liang
5,84311831
5,84311831
asked Mar 21 at 16:12
m.wilkinsonm.wilkinson
12
12
1
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
1
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05
add a comment |
1
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
1
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05
1
1
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
1
1
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55284808%2fentityframeworkcore-classes-and-entity-distinction%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f55284808%2fentityframeworkcore-classes-and-entity-distinction%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
1
docs.microsoft.com/en-us/ef/core/modeling/owned-entities
– Ivan Stoev
Mar 21 at 16:33
1
This is exactly what I wanted. Thanks
– m.wilkinson
Mar 22 at 11:05