Need help creating new father entites and re-asigning child ones efficientlyHow to create a new object instance from a TypeMax or Default?Saving my own created entites while updating in EDMXIn EF, is it efficient to delete a parent row by deleting the child rows referencing it first through the child row clones?Excel row insert with C#Best performance for find objects in entities and load entities, Foreach or where with LinQ ON C#?Get related entites of child items using Linq?error creating datatable from combined csv fileNeed help creating Creating Controller to Delete item from databaseHow to get id of new created child?

Is it possible to have a character with proficiency in all martial weapons without proficiency in Medium armor?

Bin Packing with Relational Penalization

Movie with Zoltar in a trailer park named Paradise and a boy playing a video game then being recruited by aliens to fight in space

How can I deal with extreme temperatures in a hotel room?

Why was Mal so quick to drop Bester in favour of Kaylee?

Just graduated with a master’s degree, but I internalised nothing

Adjective for 'made of pus' or 'corrupted by pus' or something of something of pus

Are the requirements of a Horn of Valhalla cumulative?

"Vector quantity" --More than two dimensions?

Comment traduire « That screams X »

What's the safest way to inform a new user of their password on an invite-only website?

Find the radius of the hoop.

What exactly did Ant-Man see that made him say that their plan worked?

How did they film the Invisible Man being invisible, in 1933?

How to describe POV characters?

The warming up game

What will happen if I checked in for another room in the same hotel, but not for the booked one?

Losing queen and then winning the game

What verb for taking advantage fits in "I don't want to ________ on the friendship"?

Using “ser” without "un/una"?

13th chords on guitar

Can I travel from Germany to England alone as an unaccompanied minor?

How did Lefschetz do mathematics without hands?

How Do I Know When I am in Private Mode?



Need help creating new father entites and re-asigning child ones efficiently


How to create a new object instance from a TypeMax or Default?Saving my own created entites while updating in EDMXIn EF, is it efficient to delete a parent row by deleting the child rows referencing it first through the child row clones?Excel row insert with C#Best performance for find objects in entities and load entities, Foreach or where with LinQ ON C#?Get related entites of child items using Linq?error creating datatable from combined csv fileNeed help creating Creating Controller to Delete item from databaseHow to get id of new created child?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I create a Module from a CSV file, with a default Submodule , each Submodule contains segments (each row from the CSV) , now i need to SPLIT the segments into many submodules. When I created the project i created 1 default submodule with all the segments as childs to it .
Now for the code:



public Modules splitModule(int id, string type, int amount){
var ModuleSplit = _context.Modules.Include(x=>x.SourceLang).Where(x=>x.Id == id).FirstOrDefault();
var DefaultSubM = _context.Submodules.Include(x=>x.Segments).Where(x=>x.ModuleId == ModuleSplit.Id).FirstOrDefault();
List<Submodules> listToAdd = new List<Submodules>();
if(type == "linguists")
//linguists = rows / linguists , rounded
var rowAmount = DefaultSubM.Segments.Count();
int chunkSize = rowAmount / amount ;

for(int i=0 ; i< amount-1 ; i++)
Submodules newSub = new Submodules();
newSub.Status = Abr.Active;
newSub.Token = Guid.NewGuid().ToString();
listToAdd.Add(newSub);


_context.Submodules.AddRange(listToAdd);
_context.SaveChanges();

var skipAm = rowAmount;
if(rowAmount % amount != 0)
skipAm++;


foreach(var a in listToAdd)
var subL = DefaultSubM.Segments.Take(rowAmount).Skip(skipAm);
foreach(var b in subL)
a.Segments.Add(b);
DefaultSubM.Segments.Remove(b);


_context.SaveChanges();



I would need to take ChuckSize amount of segments from default Submodule to each new one. Is there a correct way to do it? , from what i know (little) , i would need to first add them to the context , save to get the Ids. then Take all but the first ChunkSize from the default one and add them to the second , then repeat for each one recursively.
Feel its a lot of code , and mess for this. Maybe i'm missing some magic way with linq or a method.



EDIT: Came up with this solution , but feels dirty and waaay more complex than it feels that should be...



EDIT2: Read somewhere i need to use Child.Parent = newParent Object.










share|improve this question
























  • For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

    – Thomas Koelle
    Mar 25 at 14:36











  • Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

    – Rodrigo Chapeta
    Mar 25 at 14:43

















1















I create a Module from a CSV file, with a default Submodule , each Submodule contains segments (each row from the CSV) , now i need to SPLIT the segments into many submodules. When I created the project i created 1 default submodule with all the segments as childs to it .
Now for the code:



public Modules splitModule(int id, string type, int amount){
var ModuleSplit = _context.Modules.Include(x=>x.SourceLang).Where(x=>x.Id == id).FirstOrDefault();
var DefaultSubM = _context.Submodules.Include(x=>x.Segments).Where(x=>x.ModuleId == ModuleSplit.Id).FirstOrDefault();
List<Submodules> listToAdd = new List<Submodules>();
if(type == "linguists")
//linguists = rows / linguists , rounded
var rowAmount = DefaultSubM.Segments.Count();
int chunkSize = rowAmount / amount ;

for(int i=0 ; i< amount-1 ; i++)
Submodules newSub = new Submodules();
newSub.Status = Abr.Active;
newSub.Token = Guid.NewGuid().ToString();
listToAdd.Add(newSub);


_context.Submodules.AddRange(listToAdd);
_context.SaveChanges();

var skipAm = rowAmount;
if(rowAmount % amount != 0)
skipAm++;


foreach(var a in listToAdd)
var subL = DefaultSubM.Segments.Take(rowAmount).Skip(skipAm);
foreach(var b in subL)
a.Segments.Add(b);
DefaultSubM.Segments.Remove(b);


_context.SaveChanges();



I would need to take ChuckSize amount of segments from default Submodule to each new one. Is there a correct way to do it? , from what i know (little) , i would need to first add them to the context , save to get the Ids. then Take all but the first ChunkSize from the default one and add them to the second , then repeat for each one recursively.
Feel its a lot of code , and mess for this. Maybe i'm missing some magic way with linq or a method.



EDIT: Came up with this solution , but feels dirty and waaay more complex than it feels that should be...



EDIT2: Read somewhere i need to use Child.Parent = newParent Object.










share|improve this question
























  • For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

    – Thomas Koelle
    Mar 25 at 14:36











  • Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

    – Rodrigo Chapeta
    Mar 25 at 14:43













1












1








1








I create a Module from a CSV file, with a default Submodule , each Submodule contains segments (each row from the CSV) , now i need to SPLIT the segments into many submodules. When I created the project i created 1 default submodule with all the segments as childs to it .
Now for the code:



public Modules splitModule(int id, string type, int amount){
var ModuleSplit = _context.Modules.Include(x=>x.SourceLang).Where(x=>x.Id == id).FirstOrDefault();
var DefaultSubM = _context.Submodules.Include(x=>x.Segments).Where(x=>x.ModuleId == ModuleSplit.Id).FirstOrDefault();
List<Submodules> listToAdd = new List<Submodules>();
if(type == "linguists")
//linguists = rows / linguists , rounded
var rowAmount = DefaultSubM.Segments.Count();
int chunkSize = rowAmount / amount ;

for(int i=0 ; i< amount-1 ; i++)
Submodules newSub = new Submodules();
newSub.Status = Abr.Active;
newSub.Token = Guid.NewGuid().ToString();
listToAdd.Add(newSub);


_context.Submodules.AddRange(listToAdd);
_context.SaveChanges();

var skipAm = rowAmount;
if(rowAmount % amount != 0)
skipAm++;


foreach(var a in listToAdd)
var subL = DefaultSubM.Segments.Take(rowAmount).Skip(skipAm);
foreach(var b in subL)
a.Segments.Add(b);
DefaultSubM.Segments.Remove(b);


_context.SaveChanges();



I would need to take ChuckSize amount of segments from default Submodule to each new one. Is there a correct way to do it? , from what i know (little) , i would need to first add them to the context , save to get the Ids. then Take all but the first ChunkSize from the default one and add them to the second , then repeat for each one recursively.
Feel its a lot of code , and mess for this. Maybe i'm missing some magic way with linq or a method.



EDIT: Came up with this solution , but feels dirty and waaay more complex than it feels that should be...



EDIT2: Read somewhere i need to use Child.Parent = newParent Object.










share|improve this question
















I create a Module from a CSV file, with a default Submodule , each Submodule contains segments (each row from the CSV) , now i need to SPLIT the segments into many submodules. When I created the project i created 1 default submodule with all the segments as childs to it .
Now for the code:



public Modules splitModule(int id, string type, int amount){
var ModuleSplit = _context.Modules.Include(x=>x.SourceLang).Where(x=>x.Id == id).FirstOrDefault();
var DefaultSubM = _context.Submodules.Include(x=>x.Segments).Where(x=>x.ModuleId == ModuleSplit.Id).FirstOrDefault();
List<Submodules> listToAdd = new List<Submodules>();
if(type == "linguists")
//linguists = rows / linguists , rounded
var rowAmount = DefaultSubM.Segments.Count();
int chunkSize = rowAmount / amount ;

for(int i=0 ; i< amount-1 ; i++)
Submodules newSub = new Submodules();
newSub.Status = Abr.Active;
newSub.Token = Guid.NewGuid().ToString();
listToAdd.Add(newSub);


_context.Submodules.AddRange(listToAdd);
_context.SaveChanges();

var skipAm = rowAmount;
if(rowAmount % amount != 0)
skipAm++;


foreach(var a in listToAdd)
var subL = DefaultSubM.Segments.Take(rowAmount).Skip(skipAm);
foreach(var b in subL)
a.Segments.Add(b);
DefaultSubM.Segments.Remove(b);


_context.SaveChanges();



I would need to take ChuckSize amount of segments from default Submodule to each new one. Is there a correct way to do it? , from what i know (little) , i would need to first add them to the context , save to get the Ids. then Take all but the first ChunkSize from the default one and add them to the second , then repeat for each one recursively.
Feel its a lot of code , and mess for this. Maybe i'm missing some magic way with linq or a method.



EDIT: Came up with this solution , but feels dirty and waaay more complex than it feels that should be...



EDIT2: Read somewhere i need to use Child.Parent = newParent Object.







c# entity-framework asp.net-core entity






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 at 19:52







Rodrigo Chapeta

















asked Mar 25 at 13:57









Rodrigo ChapetaRodrigo Chapeta

144 bronze badges




144 bronze badges












  • For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

    – Thomas Koelle
    Mar 25 at 14:36











  • Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

    – Rodrigo Chapeta
    Mar 25 at 14:43

















  • For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

    – Thomas Koelle
    Mar 25 at 14:36











  • Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

    – Rodrigo Chapeta
    Mar 25 at 14:43
















For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

– Thomas Koelle
Mar 25 at 14:36





For CSV then Microsoft.VisualBasic.FileIO have the TextFieldParser that lift up part of the logic. But I still think that you need to define and code a lot with your example

– Thomas Koelle
Mar 25 at 14:36













Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

– Rodrigo Chapeta
Mar 25 at 14:43





Hi, for CSV , i have already added them to the Segments table, i used CSVHelper. Its just the part of Re assignin from One Submodule that contains ALL the segments to multiple submodules that each contain part of them. In SQL would be just updating the SubmoduleId of each segment to each new submodule Id . but wanted to see the entity framework solution.

– Rodrigo Chapeta
Mar 25 at 14:43












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%2f55339497%2fneed-help-creating-new-father-entites-and-re-asigning-child-ones-efficiently%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




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















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%2f55339497%2fneed-help-creating-new-father-entites-and-re-asigning-child-ones-efficiently%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