Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
8answers
18k views

How to update Linq to SQL dbml file?

How do I update Linq to SQL dbml file?
27
votes
5answers
6k views

Best Practices for Managing Linq to SQL Dbml Files?

I've just started using Linq to SQL, and I'm wondering if anyone has any best practices they can share for managing dbml files. How do you keep them up to date with the database? Do you have a ...
23
votes
4answers
2k views

A Linq to Sql - Multiple .DBML files or one .DBML File

I am working on a web application using ASP.NET 3.5. The application has hundreds of tables. I was told in a seminar that I should use one .DBML file for the entire application instead of using ...
10
votes
8answers
7k views

LINQ to SQL: Multiple / Single .dbml per project?

I've read Rick Strahl's article on Linq to SQL DataContext Lifetime Management hoping to find some answers on how I would manage my .dbml files since they are so closely related to DataContext. ...
7
votes
1answer
348 views

Resharper with large or *very* large files

I just wanted to know your experience with using resharper. We have a very heavy dbml file as our database has many tables and every time I need to open up that file I start getting lots of exception ...
6
votes
1answer
175 views

Problem With LINQ Model - Can't Assign NULL To Nullable Boolean!

I have a LINQ model containing an entity which is populated by a stored procedure. A couple of the fields returned by the procedure are nullable bit fields, so I've created these as nullable booleans ...
6
votes
4answers
2k views

ASP.Net MVC: Best Practices for dbml files

This may just be a yes or no type of question but here goes anyway... From all (well most) of the examples that I've seen for using mvc, it appears that method for creating the dbml file is just drop ...
5
votes
3answers
509 views

DBML customization vs regeneration

I'm having a database with a lot of foreign key relationships defined. When I simply drag any table involved in these FK connections into the DBML editor, so as to machine-generate the DBML file, ...
5
votes
4answers
1k views

Multiple foreign keys to the same table

I have a reference table with all sorts of controlled value lookup data for gender, address type, contact type, etc. Many tables have multiple foreign keys to this reference table I also have ...
5
votes
2answers
4k views

LinqToSql dbml dynamically switch connectionstring

Greetings All, We have two databases, DEV and STAGING. They are for the most part identical. I have an app settings tag in the Web.Config call it "mode", and two connectionstring entries. If mode=DEV ...
5
votes
2answers
1k views

Linq to SQL Class - Stored Procedure Signature Change

I have a Linq to Sql .dbml file which auto generates my method signatures for certain stored procedures. eg, I have in SQL spGetEmployees(@Name) so in my data context I have spGetEmployees(string ...
5
votes
5answers
2k views

Managing LINQ to SQL .dbml model complexity

This question is addressed to a degree in this question on LINQ to SQL .dbml best practices, but I am not sure how to add to a question. One of our applications uses LINQ to SQL and we have currently ...
4
votes
1answer
82 views

Few database in one dbml?

I'm creating application that must use few databases. Is there any ways to handle different databases in one .dbml file or I should use one .dbml file per one database?
4
votes
1answer
294 views

Find table in dbml file

We have a design with 150+ tables and in the .dbml layout it's lines everywhere and it's hard to find individual tables. Is there a way to search in the dbml layout instead of scrolling around trying ...
4
votes
10answers
10k views

LINQ to SQL — Can't modify return type of stored procedure

When I drag a particular stored procedure into the VS 2008 dbml designer, it shows up with Return Type set to "none", and it's read only so I can't change it. The designer code shows it as returning ...
3
votes
1answer
43 views

Interface for Linq-To-Sql Entities

This is a pretty straight-forward question. I was wondering if there is some kind of interface I could use to represent any of the entities returned by my Linq-To-Sql dbml? So I could let's say ...
3
votes
3answers
246 views

Easy way to refactor table and column names in a Linq .DBML file?

I've recently made a large series of changes to the names of columns and tables within our database (SQL Server). Now I need to update the Linq to SQL Model (.DBML) file to reflect this. In the past ...
3
votes
4answers
2k views

How do I export a DBML diagram from Visual Studio into an image?

I have a very pretty DBML diagram that I would like to preserve in our Design Documents. How do I get an image showing all of the tables in one go? I found ...
3
votes
1answer
200 views

how to force sqlmetal to keep field name case?

When dbml file is generated automatically by Visual Studio I get the exact field names as they appeared in the tables. However, since VS does not provide refresh function for dbml, I run sqlmetal ...
3
votes
4answers
178 views

LINQ2SQL: If I make changes to DB, how to mirror them in DBML?

I am using LINQ2SQL in my current project. I have a quite a lot of tables ~30. When I create my DBML file I change some of the column names etc for readability. Recently if I made a change to the ...
3
votes
2answers
2k views

350+ errors: The type 'blah.blah.blah' already contains a definition?

What the hell does this mean. Is it because I have two different .DBML files that contain the same database table? ... Error 343 The type 'mvc.Models.Bundle' already contains a definition for ...
3
votes
2answers
188 views

When I make a database change, how do I know what needs to be removed and readded to the LinqToSql O/R Designer in Visual Studio?

For example, I alter a column in a table to be not null from null. I need to then delete and readd the table. That part is pretty clear. What about views, functions, and stored procedures that ...
3
votes
2answers
4k views

Autogeneration of a DataContext designer file when using SqlMetal and Visual Studio

I am using SqlMetal to general my DataContext.dbml class for my ASP.net application using LinqToSql. When I initially created the DataContext.dbml file, Visual Studio used this to create a related ...
2
votes
3answers
96 views

How to rollback 3 statements if one fails?

In C#, I have three statements in a method that insert data into a database. The first statement inserts and I get an ID from it. This ID is used in the next two statements. I have two cases to ...
2
votes
1answer
64 views

Inheritance within generated LINQ classes?

I have a data warehouse system that relies on LINQ to SQL for its database abstraction. To cut a long story short, I have a 2011 database which contains many records for this year, I also have a ...
2
votes
2answers
230 views

What is a .dbml.layout file for?

What is a .dbml.layout file for? Is it important? Or, maybe, it just stores the placing of blocks in the designer and can be deleted? I've got this question because I want to edit the .dbml file ...
2
votes
1answer
137 views

Cross Database Join with Linq - Updating T4 template to support DB name?

I'm currently running in a multi-DB SQL Server environment and using linq to sql to perform queries. I'm using the approach documented here to achieve cross DB joins: ...
2
votes
1answer
141 views

Where does the 'Name' property in a DBML come from?

I'm using Linq-To-Sql and inside my DBML there are objects built from the database connection provided. If you click on an association line between two tables and view the properties on it, you will ...
2
votes
2answers
837 views

LINQ and Stored procedures DBML updating problem

I am having serious frustration with DBML files not updating when I alter my stored procedures. This is what happens. I alter my stored procedure. I then delete the stored procedure from the .DBML ...
2
votes
2answers
786 views

Specifying ASP.NET MVC attributes for auto-generated data models

I'm very new to ASP.NET MVC (as well as ASP.NET in general), and going to gain some knowledge for this technology, so I'm sorry I can ask some trivial questions. I have installed ASP.NET MVC 3 RC1 and ...
2
votes
1answer
221 views

Added a table to a dbml, but it doesn't show up in code

I am using VS2010 with C#, and linq-to-sql. Does anyone have any ideas of where to start looking for a solution? My database has a 'Cats' table and there is a 'Feet' and 'EyeColour' table that are ...
2
votes
1answer
396 views

Generate a Database using LinQ to SQL DBML file

I just inherited a project with LinQ to SQL Database file. I need about half of the 100 plus database tables so I would like to Generate a database based off the DBML file and strip out the stuff I ...
2
votes
2answers
332 views

Nullable One To One Relationships with Integer Keys in LINQ-to-SQL

I have two objects (Foo and Bar) that have a one-to-zero-or-one relationship between them. So, Foo has a nullable foreign key reference to Bar.ID and a (nullbusted) unique index to enforce the "1" ...
2
votes
5answers
549 views

Sharing LINQ-to-SQL classes/models between multiple projects in a solution

I have multiple C# projects in a Visual Studio solution right now that will all use the same SQL Server database. What is the proper way to share LINQ-to-SQL classes between projects? I'm ...
2
votes
1answer
500 views

Designer.cs is deleted on adding object in DBML

My original dbml file had objects which had data connection to other server/db. As my db is changed to different server and i want to update my spproc when i delete the spproc and drag the new one ...
2
votes
1answer
1k views

Visual Studio Tool to update a DBML? [closed]

Possible Duplicate: How to update Linq to SQL dbml file? Is there a quick command in VS2008 to update a DBML that I'm missing or do I have to dleete everything, re-add and then deal with ...
2
votes
3answers
393 views

Time Stamp in DBML is solving concurrency issues…why?

We use LINQ in our ASP .NET application to run database queries and commands. We have been having concurrency issues on updates to tables in which we update the value of a Date field. More ...
2
votes
1answer
137 views

LINQ-to-SQL References to Entities in other DataContexts

In my database designs, I tend to have "clusters" of tables. These clusters will typically support one application or group of tightly-functionally-related applications. Often, these clusters also ...
2
votes
2answers
123 views

Why are my manually created Linq2Sql table relationships showing up in code?

I have some views that I'd like to relate together in my Linq2Sql DBML file. I've right clicked, selected "Add association" and manually created the associations from children to parents, for ...
2
votes
1answer
118 views

Looking for a class in large dbml files

Hi does someone know a quick way to find a class in large dbml files. We have a large data model and it takes a good 2-3 minutes to scroll and locate the required class. Zooming out makes it quite ...
2
votes
1answer
738 views

LinqToSQL - mapping out the DataContext with lots of tables?

I've been working on a project where I have been using LinqToSQL that involved a lot of tables. All of these where mapped in one .dbml file (i.e. only one DataContext). I did this on the pretense that ...
2
votes
2answers
426 views

How do I use sqlmetal to generate an internal (not public) data context

I'd like to use sqlmetal to generate dbml data contexts for my project, but the data context and all classes created are marked as public. As this is supposed to be an API layer I'd like to instead ...
2
votes
2answers
785 views

Editing Autogenerated DMBL file for WCF Service

In our project we have a standard auto-generated designer.cs file, linked to a DBML file, that contains all our object classes that map onto our database tables. We want to pass these objects ...
1
vote
1answer
20 views

issue to create physical DB's from DBML files?

hi I have recently received a project file from a different company for setup in our company. The project has all the data and runs fine, however there are no Databases supplied with it. by looking a ...
1
vote
0answers
23 views

Generate VS DBML images (automatically) from a command line?

I had this question in a prior post: C# How to programmatically export/save DBML diagram? However after trying it out, this is for adding a button to the VS interface, and thus requires manual ...
1
vote
1answer
59 views

How to set TransactionScope to Read Uncommited by default

My project use dbml to access database with linq to sql. It uses Transaction at several operation which is required. as database is growing i face follwoing errors. 1. Timeout expired. The timeout ...
1
vote
1answer
63 views

Updated a table in dbml file and all webcontrols throw error

I had to make some changes in one of my table and so to refresh the table in my dbml file, I just removed and readded that particular table by dragging it from server explorer of vs 2010. After that, ...
1
vote
4answers
994 views

The return types for the following stored procedures could not be detected

While drag-drop a stored procedure in dbml file I get this error: Unknown Return Type The return types for the following stored procedures could not be detected. Set the return type for each ...
1
vote
2answers
107 views

Visual Studio 2008 SP1 with GDR2 - DBMDL could not be created

I get the following dialog when I try to load any DB project in Visual Studio. There is nothing else locking it, nor are the permissions on that specific folder restrictive. This used to work, but ...
1
vote
1answer
107 views

Can I regenerate .designer.cs based on a manually edited .dbml?

I've made some modifications (renamings mostly) in a DBML file manually (using a text editor). Can I use VisualStudio to recreate the .designer.cs file based on new DBML?

1 2 3 4