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;








0















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










share|improve this question



















  • 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

















0















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










share|improve this question



















  • 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













0












0








0








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










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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












  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript