Entity Framework update from database doesn't show at my edmx file [duplicate]
This question already has an answer here:
How do I propagate database changes to my .edmx file?
5 answers
After successful connection with database can't see tables. I try to use "Update from database" button but it doesn't appear at menu. How can fix it? What did i miss?
c# .net database visual-studio entity-framework
marked as duplicate by Gert Arnold
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Jan 2 at 14:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
How do I propagate database changes to my .edmx file?
5 answers
After successful connection with database can't see tables. I try to use "Update from database" button but it doesn't appear at menu. How can fix it? What did i miss?
c# .net database visual-studio entity-framework
marked as duplicate by Gert Arnold
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Jan 2 at 14:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57
add a comment |
This question already has an answer here:
How do I propagate database changes to my .edmx file?
5 answers
After successful connection with database can't see tables. I try to use "Update from database" button but it doesn't appear at menu. How can fix it? What did i miss?
c# .net database visual-studio entity-framework
This question already has an answer here:
How do I propagate database changes to my .edmx file?
5 answers
After successful connection with database can't see tables. I try to use "Update from database" button but it doesn't appear at menu. How can fix it? What did i miss?
This question already has an answer here:
How do I propagate database changes to my .edmx file?
5 answers
c# .net database visual-studio entity-framework
c# .net database visual-studio entity-framework
edited Jan 2 at 14:40
SixtySeven
asked Jan 2 at 14:11
SixtySevenSixtySeven
134
134
marked as duplicate by Gert Arnold
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Jan 2 at 14:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Gert Arnold
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Jan 2 at 14:56
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57
add a comment |
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57
add a comment |
1 Answer
1
active
oldest
votes
For view tables you have two options (Maybe more, I don't know):
1 - Double click in "edmx" file, it will show you a database diagram.
2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.
Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".
And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
|
show 2 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For view tables you have two options (Maybe more, I don't know):
1 - Double click in "edmx" file, it will show you a database diagram.
2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.
Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".
And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
|
show 2 more comments
For view tables you have two options (Maybe more, I don't know):
1 - Double click in "edmx" file, it will show you a database diagram.
2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.
Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".
And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
|
show 2 more comments
For view tables you have two options (Maybe more, I don't know):
1 - Double click in "edmx" file, it will show you a database diagram.
2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.
Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".
And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:
For view tables you have two options (Maybe more, I don't know):
1 - Double click in "edmx" file, it will show you a database diagram.
2 - Once inside the diagram open View --> Other Windows --> Entity explorer data model.
Inside new panel you can see a lot of information of your database, like tables and Views in "Tables/Views" or functions in "Functions/procedures".
And for add, update database, inside edmx diagram, right click, "Update model from database" and you will be able to add, update or delete tables, views... etc:
edited Jan 2 at 14:57
answered Jan 2 at 14:45
DaniDani
631519
631519
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
|
show 2 more comments
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
I did it, but any model hasn't been added. Didn't receive any error also.
– SixtySeven
Jan 2 at 15:44
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
You have to select tables that you want to add to the model by expanding and checking it !!! @SixtySeven Try and tell me please !!!
– Dani
Jan 2 at 15:47
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I select evey time but model still hasn't been created. I try to open toolbox but it's closing immediately.
– SixtySeven
Jan 2 at 15:53
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
I have sht like this: errors.EntityModels.edmx
– SixtySeven
Jan 2 at 15:55
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
Are you triying to add or to update tables?
– Dani
Jan 2 at 15:58
|
show 2 more comments
You missed the part "Right click on the design surface". You should double-click the EDMX in the solution explorer to open the design surface.
– Gert Arnold
Jan 2 at 14:57