How do I update Linq intellisense when I alter my table? [duplicate] - linq
How do I update a Linq to SQL .dbml file?
There are three ways to keep the model in sync.
Delete the modified tables from the designer, and drag them back onto the designer surface from the Database Explorer. I have found that, for this to work reliably, you have to:
a. Refresh the database schema in the Database Explorer (right-click, refresh)
b. Save the designer after deleting the tables
c. Save again after dragging the tables back.
Note though that if you have modified any properties (for instance, turning off the child property of an association), this will obviously lose those modifications — you'll have to make them again.
Use SQLMetal to regenerate the schema from your database. I have seen a number of blog posts that show how to script this.
Make changes directly in the Properties pane of the DBML. This works for simple changes, like allowing nulls on a field.
The DBML designer is not installed by default in Visual Studio 2015, 2017 or 2019. You will have to close VS, start the VS installer and modify your installation. The LINQ to SQL tools is the feature you must install. For VS 2017/2019, you can find it under Individual Components > Code Tools.
To update a table in your .dbml-diagram with, for example, added columns, do this:
Update your SQL Server Explorer window.
Drag the "new" version of your table into the .dbml-diagram (report1 in the picture below).
Mark the added columns in the new version of the table, press Ctrl+C to copy the added columns.
Click the "old" version of your table and press Ctrl+V to paste the added columns into the already present version of the table.
Delete the dragged table from step 2 and save the .dbml file.
You could also check out the PLINQO set of code generation templates, based on CodeSmith, which allow you to do a lot of neat things for and with Linq-to-SQL:
generate one file per class (instead of a single, huge file)
update your model as needed
many more features
Check out the PLINQO site at http://www.plinqo.com and have a look at the intro videos.
The second tool I know of are the Huagati DBML/EDMX tools, which allow update of DBML (Linq-to-SQL) and EDMX (Entity Framework) mapping files, and more (like naming conventions etc.).
Marc
We use a custom written T4 template that dynamically queries the information_schema model for each table in all of our .DBML files, and then overwrites parts of the .DBML file with fresh schema info from the database. I highly recommend implementing a solution like this - it has saved me oodles of time, and unlike deleting and re-adding your tables to your model you get to keep your associations. With this solution, you'll get compile-time errors when your schema changes. You want to make sure that you're using a version control system though, because diffing is really handy. This is a great solution that works well if you're developing with a DB schema first approach. Of course, I can't share my company's code so you're on your own for writing this yourself. But if you know some Linq-to-XML and can go to school on this project, you can get to where you want to be.
I would recommend using the visual designer built into VS2008, as updating the dbml also updates the code that is generated for you. Modifying the dbml outside of the visual designer would result in the underlying code being out of sync.
There is a nuance to updating tables then updating the DBML... Foreign key relationships are not immediately always brought over if changes are made to existing tables. The work around is to do a build of the project and then re-add the tables again. I reported this to MS and its being fixed for VS2010.
DBML display does not show new foreign key constraints
Note that the instructions given in the main answer are not clear. To update the table
Open up the dbml design surface
Select all tables with Right->Click->Select All or CTRLa
CTRLx (Cut)
CTRLv (Paste)
Save and rebuild solution.
In the case of stored procedure update, you should delete it from the .dbml file and reinsert it again. But if the stored procedure have two paths (ex: if something; display some columns; else display some other columns), make sure the two paths have the same columns aliases!!! Otherwise only the first path columns will exist.
Here is the complete step-by-step method that worked for me in order to update the LINQ to SQL dbml and associated files to include a new column that I added to one of the database tables.
You need to make the changes to your design surface as suggested by other above; however, you need to do some extra steps. These are the complete steps:
Drag your updated table from Server Explorer onto the design surface
Copy the new column from this "new" table to the "old" table (see M463 answer for details on this step)
Delete the "new" table that you just dragged over
Click and highlight the stored procedure, then delete it
Drag the new stored procedure and drop into place.
Delete the .designer.vb file in the code-behind of the .dbml
(if you do not delete this, your code-behind containing the schema will
not update even if you rebuild and the new table field will not be included)
Clean and Rebuild the solution (this will rebuild the .designer.vb file to include all the new changes!).
Use Visual Studio 2019 open DBML files in graphic designer to update DBML files.
when not working:https://developercommunity.visualstudio.com/t/dbml-files-not-opening-in-graphic-designer-in-vs-2/1659675
Just for the record
Related
What causes "O/R Designer validation failed" after minor changes to a .dbml file using Designer?
I added some columns to a table using SQL Server Management Studio, and then wanted to reference them in my project in Visual Studio 2010, where it is loaded using Entity Frameworks, which seems not to have a handy feature for simply importing updates from the database. So I manually added the columns. They were just bit columns like an existing column, so I used cut and paste to duplicate that column, then renamed them and filled in the Storage field to match. But then when trying to build the project, it would fail with: O/R Designer validation failed . . . myDB.dbml Error: The operation could not be completed. Unspecified error The main tips I found about these not-very-helpful error messages, involved restarting Visual Studio. That didn't help me here. What else can cause (and what can fix) this error?
What caused this in my case, was an apparent bug in Visual Studio 2010's visual DBML editor! That is, the new columns I had added and manually entered correctly, did not get saved correctly. This was somehow invisible even when closing Visual Studio and reloading the editor - there, it appeared correctly. However, when I looked at the actual .dbml file using Notepad++, I could see that the Storage= values were all still the same as the column I had Cut & Paste from, rather than the correct values I had hand-entered, and that showed in the visual DBML editor! I notice that the correct columns do not even have a Storage= field, which is probably a clue to what the bug in the editor is. I deleted the incorrect Storage= fields from the .dbml file using Notepad++, and this solved the build problem. I also needed to go into the visual designer and just make a random trivial change (I nudged the position of the table in the display) before it would add member variables for the columns I had added, to the auto-generated LINQ .cs file.
How to create tables in MS Access database using Visual Studio Server Explorer?
Is it possible to add new tables to an existing MS Access database from the Server Explorer window in Visual Studio? I've seen videos on how to do exactly that with a SQL server database connection. You just right-click the table folder in the tree of database object types below the Database Connection item in server explorer. The choices on the context menu include "Add a New Table." Once you fill out all the details of the table columns in the associated VS table definition tab, you click something and run the auto-generated CREATE TABLE command against the database, and the table is created. But when I try that with my MS Access database (connection successful, all the tables show up, etc.), the right-click menu does not show Add a New Table. I'm thinking that there is no way to create tables in an Access database through Visual Studio wizards or designers. Maybe all the database creation, structure, field definitions, and such things must be created through the MS Access program itself. Am I missing something obvious? Is there a way to do it through VS? (I hope; it would be nice to create the tables through VS). Thank you.
After spending a long time on it, I conclude that there is no way to create new tables in an MS Access database by using Visual Studio designers and tools. Maybe this will help someone one day.
L2S DBML Table Stuck as "Internal" Visual Studio
I have a Linq to SQL data context with several tables. One particular table is marked in the DBML designer as having Public access, however when I save and compile the assembly it always changes the access modifier in the .designer file to internal. Thus the build always fails (as I have classes in other assemblies that reference this table) and I have to go into the .designer file and change the internal modifier back to public. Any change to the DBML file at all causes this to happen, even if I specifically set the property in the designer (toggle it back and forth, whatever). Is this a bug in VS (problem experienced in VS2010 and VS2013) and is there a fix? Thanks.
I believe I have finally found a solution: Open the .dbml file outside Visual Studio (e.g. Notepad) Locate the problematic table definition. Change AccessModifier="Internal" to AccessModifier="Public" Save and close the .dbml file Update the table definitions in the .designer.cs file with the public modifier if you have not already done so. In theory the dbml designer should be doing this for me when I change that property on the table but unfortunately it doesn't for these particular tables. Following these steps fixed the problem.
How do I recover an Entity Framework 4 EDMX file when Visual Studio 2010 will not open it?
I have been following the examples from Chapter 2 in an early access edition of Entity Framework 4 in Action whereby one creates a database schema, generates an entity model from the database schema, and then performs some entity customizations with regards to object inheritance, adding complex properties, etc. Everything was great until I closed and then restarted Visual Studio 2010 SP1. After restarting, I can no longer open the EDMX file with the designer. I get a dialog box stating "Cannot load 'C:\Projects\Test\Test.MyModel\Model.edmx': An item with the same key has already been added.". There is no further information in the Output window. How might one might recover the file? How might one debug the model loading process to find a little more information on what "item" is attempting to load or even what type of "item" it is?
It's an XML file so you can open it up in text mode and see what the problem is. Sounds like there could be items with duplicate names somehow.
Updating your edmx to reflect changes made in your db (.net linq-to-entities)
So I have my edmx made. Then I change my database a little bit, changing a column to from being a NOT NULL to allowing NULL. I go into my edmx, right click and choose "Update Model from Database" Now I go into my program and it hasnt actually updated... I can't put a null in the column. What do I have to do to update the edmx properly? Thank you.
Update/delete from the EDMX is not always functional. If the model doesn't get updated on clicking Update Model from Database let's say when you have updated a view/table in the DB, do the following: 1) Delete the view/table from the model diagram 2) Switch the EDMX to xml view (right click the edmx file and select "Open With") 3) Search and delete the xml entity elements 4) Switch back to EDMX view 5) Click Update Model from Database This should reflect any kind of change you made to the DB to your EDMX. It's cumbersome, but works flawlessly. In an ideal world, i would expect the Update Model from Database to sync the changes from DB to EDMX. But, it doesn't work most of the time.
What I have successfully done is this (VB.Net). make updates to the database as desired/ required Choose "Update from database" in the EDMX model, the graphical model will correctly show the new structure/tables Expand the project so that it shows all related files The two files with the "tt" extension are the ones that matter: first take the one WITHOUT the .Context. before the tt extension. right click on it and choose Run Custom Tool: Do the same for the .tt file with the .Context. in its name. All of your code and logical model classes will be updated.
Choosing the Update Model from Database is the best method for updating your EDMX. There are certain properties that don't get updated on the Conceptual layer. Ensure that your Store layer has been updated by viewing it in the Model Viewer toolbox. If the Store has properly been updated then you're okay, and your database is in sync. If so, go into the visual designer, click the field, go to properties, and update the NotNull property on the Conceptual side.
Yes, It doesn't work most of the time :-/ The "best method" (because it works systematically) is to delete the EDMX file and generate it again. But don't forget to remove the connection string in App.config (else VS2008 wizzard will add a suffix to the default entity name), and clear the cache. I hope that these tools will work better in a next release, because it decreases the productivity dramatically...
THIS IS THE QUICKEST EASIEST WAY: Delete the view/table from the .edmx diagram. NOW use the Update Model from Database to add the table back in.
1.Build the project after updating EDMX file. 2.Right click your .tt file in solution explorer. 3.Select "Run Custom Tool" option. This will update the .tt file. Source : here!
Open the edmx file in the VS's XML editor and check to see if there were errors genned when the update was attempted. <!--Errors Found During Generation: warning 6013: The table/view 'foo.dbo.snafu' does not have a primary key defined and no valid primary key could be inferred. This table/view has been excluded. To use the entity you will need to review your schema, add the correct keys and uncomment it. <EntityType Name="snafu"> <Property Name="snafu_column" Type="smallint" /> </EntityType>--> In the above case...Adding a primary key to the table in question caused the "Update Model from Database" to work.
This answer is better: https://stackoverflow.com/a/23886016/1014884 Any manual editing is ripe for errors or will be lost when someone uses any tool like the wizard. Deleting and updating with the wizard is much better.
It doesnt update for example max length for string attributes! If you work with TFS it is not good to delete the file, you want to keep the history and not affect others. For me it works having a tiniy separate project that I can use to completely recreate the edmx file, I open it in xml, copy paste to the existing one, and move one shape in the model in order for VS to recreate the .cs file. Voila, it is now updated.
A view I created in the database was not appearing in the designer (after choosing "Update model from database..." and adding a check next to the name of the view). I saw no error message until I switched the EDMX to xml view: Right click the edmx file Select "Open With..." Select "Automatic Editor Selector (XML)" Click Find and search for your view name In the edmx xml I found: "Errors Found During Generation: warning 6013: The table/view '(view name)' does not have a primary key defined and no valid primary key could be inferred. This table/view has been excluded. To use the entity, you will need to review your schema, add the correct keys, and uncomment it." I modified the view to have a primary key. Then I opened the edmx designer and ran "Update model from database..." and the view then appeared in the designer as expected with no errors.
Removing all tables from designer view and Updating after that works for me