Tagged Questions

The SqlMetal command-line tool generates code and mapping for the LINQ to SQL component of the .NET Framework.

learn more… | top users | synonyms

11
votes
5answers
2k views

Linq to SQL - Don't fetch a particular column

Is there a way to not fetch a specific column using linqtosql without having to use an anonymous type and specify each returned filed individually? We use SQLMetal to generate the dbml file which ...
5
votes
3answers
441 views

SQLMetal generates classes but not parameterless constructors

I need to regularly refresh my Linq To SQL classes; Yes, shame on me for not thinking about my data schema thoroughly enough, bad developer, ad nauseum. I found SQLMetal almost does the trick, but ...
5
votes
2answers
153 views

Model, Business Rules and Persistence

I'm having trouble figuring out the best approach for an certain application. I'm not really used to newer architectures that superseded old TLA (three layer architecture), so that's where I'm coming ...
5
votes
1answer
952 views

SqlMetal wrongly generates the return type of my stored proc (LINQ)

Hi have a stored proc that always returns a single row depending of a parameter: IF @bleh = 1 SELECT TOP 1 Xyz FROM Abc ELSE SELECT TOP 1 Def FROM Abc I must use SqlMetal to generate the ...
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 ...
3
votes
1answer
194 views

SQLMetal Multiple Foreign Keys Pointing to One Table Issue

Edit - Cleaning up question to better reflect the actual issue: I'm using SQLMetal to generate database classes from our SQL Server db. Recently, I needed to add a table that had multiple foreign ...
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
1answer
231 views

Why is SQLMetal.exe generating different results for SQL Compact 3.5 and SQL Express 2008 (foreign keys are missing)

Here's the story: I created a SQL Compact 3.5 database and used SQLMetal.exe to generate DataContext for it. It worked well, but soon I realized that it simply does not suit my needs so I decided to ...
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
1answer
442 views

Generating your LINQ-to-SQL datalayer

I usually use Codesmith & NetTiers for my datalayers, and as they can be run from the command line it just requires a simple batch file to regenerate / rebuild everything whenever changes are made ...
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
4answers
582 views

ASP.NET MVC Update Model Doesn't Work?

I'd like to update a Client type entity. [HttpPost] public ActionResult Manage(String id, FormCollection collection) { // Create service ClientService service = new ClientService(); // ...
2
votes
2answers
304 views

System.DateTime and Sql datetime2 in Linq2Sql (using sqlmetal)

I'd like to utilize new Sql datetime2 data type for event logging (as standard datetime has lower precision than System.DateTime causing data loss on storing) but when i generate the code with ...
2
votes
2answers
358 views

SQLMetal fails to create DBML from SQL Server 2005 database

As the title already says, am I trying to create an dbml-file by using SQLMetal. The background for this action is to create a C#-Codefile which contains all tables, function, views, stored procedures ...
2
votes
1answer
418 views

SQL Server CE (SSCE) 4.0 w/ SQLmetal

I've created a small test project in WebMatrix which uses SSCE 4.0. Not being a fan of using embedded SQL, I wanted to create some LINQ2SQL domain classes for the SSCE 4.0 database generated by ...
2
votes
2answers
510 views

SQL Metal for specific tables or another way to refresh/add table to .dbml file

anybody have any easy way of doing this in Visual Studio, without having to use the Server Explorer ? I tried also looking at macro's but recording only produce Sub TemporaryMacro() End Sub So ...
2
votes
2answers
1k views

sqlmetal.exe not found

Whenever i try to run sqlmetal, i get this: 'sqlmetal' is not recognized as an internal or external command, operable program or batch file this is from both CMD and the Visual Studio Command Prompt ...
2
votes
1answer
539 views

Generating Linq classes from a SQL Compact 3.5 database using SQLMetal

I am generating Linq classes by running SQLMetal from the command line against a Compact 3.5 database. The Compact 3.5 database is a local database cache (generated by the Sync Framework "Create Local ...
2
votes
4answers
988 views

How to create a LINQ To SQL datacontext for large DB using SQLMetal when it generates a 12MB DataContext.cs file?

My problem is this: We have a very large Legacy DB with many SPROCs, Views & Tables. The Designer is a "NO GO" b/c of the size. I've configured SQL Metal to build the data context, but the ...
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
1answer
250 views

SQLmetal, is it only a mapper for linq to sql?

Is the code gen tool sqlmetal only a mapper to linq to sql? I'm looking for something that will create common CRUD operations also like: GetUserByID UpdateUserByID InsertUser GetAllUsers etc.
1
vote
1answer
85 views

SQLMetal: How to find Connection String?

I am trying to create a simple offline application for personal-use that uses a SQL Server Compact 3.5 database and I plan to use Linq-to-SQL to work with it. I have used SQLMetal (through the ...
1
vote
0answers
27 views

SqlMetal (v7.1) still bombs when getting a sproc with a table-valued param in SqlServer 2008 instead of Skipping and Continuing

According to this post: https://connect.microsoft.com/VisualStudio/feedback/details/362523/sqlmetal-error-when-used-on-a-database-with-a-table-valued-parameter#tabs and several other posts I've found ...
1
vote
2answers
135 views

how do you generate class for LINQ to SQL?

I am using linq to sql for my mvc 3 project. There are several ways to generate domain modal class files. sqlmetal Object Relational Designer hand code I always hand code those model class ...
1
vote
1answer
75 views

How to split up large sql metal c# entity file

I used sql metal to generate a c# entity file for the database that I'm using. The end result is a 6mb file with many entity classes inside, this takes a long time to load up in visual stuido. Is it ...
1
vote
0answers
38 views

Using SQLCE and SQLExpress

I have an app which currently uses SQLCE, and the schema is in a sdf. Now we want to allow it to connect to a SQLServerExpressEdition based on some mode. I have a couple of queries 1) Will the ...
1
vote
1answer
123 views

Different [DataMember] behaviour in sqlmetal than dbml designer

I've taken over an application using linq-to-sql and now plan to do some major changes to the database. Due to the lack of support for refreshing the model in the dbml designer I'm trying to use ...
1
vote
1answer
385 views

Problem with genarate *DBML file from *SDF with SqlMetal util

Hi I try generate dbml from sdf file. So I localize sqlMetal util in: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin Sdf DB file path: D:\DB_TEST\Spiri_SQL_CE_DB.sdf So I try this commad ...
1
vote
2answers
521 views

No parameterless constructor defined for this object

In my project, I create Linq-to-SQL classes using SqlMetal. The problem with this is that SqlMetal doesn't appear to create a parameterless constructor. I've always gotten around this because I can ...
1
vote
1answer
373 views

How do I update a foreign key efficiently in LINQ to SQL/SQLMetal?

I ran into an issue trying to update a foreign key field: record.ForeignId = newId; It bombs with "Operation is not valid due to the current state of the object" due to SQLMetal code that throws ...
1
vote
1answer
54 views

Method of saving the row creation time which can be generated by SQLMetal

I'd like to save the creation time of a row, so I have created a datetime column and set it's Default Value to be Getdate(). But when I generate the dbml file from SQLMetal and re-create the database ...
1
vote
1answer
468 views

SQL metal to dbml, how to generate correct foreign key column names

I have this 2 tables table name: Person with Columns:PersonID, Name table name: VisitInfo with Columns: VisitPersonID , CoordinatorPersonID both columns have a foreign key to person table When i ...
1
vote
1answer
312 views

SqlMetal Not Generating Views, Functions, or Stored Procedures

I am using the following commands as part of a cmd file: sqlmetal /server:localhost\SQLEXPRESS /database:DashBoard /dbml:DataClasses.dbml /namespace:DashBoard.Data sqlmetal ...
1
vote
2answers
141 views

All or None with SQLMetal?

I was looking to create a pre-build method for a web application using SQLMetal to bring any changes since the last build into my DBML file. Since we are just starting out with LINQ most of the large ...
1
vote
2answers
459 views

OneToOne relation (cardinality) in LINQ to SQL with SQLMetal

Is there any possibility to set OneToOne relation (cardinality) when generate dbml with SQLMetal? By default dbml schema generated with the OneToMany relation.
1
vote
2answers
345 views

C#: Add data to an SQLMetal generated database class?

I used SQLMetal to generate a code file representing my database, and i can't figure out how to add entries to the database from the SQLMetal generated classes. How do i do this? do i just add to the ...
1
vote
2answers
333 views

SqlMetal generating garbage association names

Why is SqlMetal messing up the Association names. For e.g. in my 'TextMessage' table i have two columns referencing the 'ApplicationUser' table. 'SenderUserId' and 'RecipientUserId' When I run ...
1
vote
3answers
777 views

Accessing members of the other half of a partial class

I'm just learning to work with partial classes in VB.NET and VS2008. Specifically, I'm trying to extend a LINQ to SQL class that was automatically created by SqlMetal. The automatically generated ...
0
votes
0answers
19 views

Extending a sqlmetal generated class

Lets say I have the following tables. Person ID Name Email Message ID PersonID Title Message Using sqlmetal I can now have a person object and a message object. What I want to do is filter ...
0
votes
1answer
26 views

sqlmetal.exe returns Using the generic type 'System.Data.Linq.Table' requires 1 type arguments

I am using sqlmetal.exr to generate the mapping code for me. I am calling sql metal by using. cd C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin SqlMetal.exe /server:servername\SQL ...
0
votes
0answers
12 views

SqlMetal is ignoring one association

I'm using SqlMetal to generate a map of the DB in C# against the developing environment DB. The generated file has 1,89MB. SqlMetal /server:<ip> /database:<dbname> /user:<dbuser> ...
0
votes
1answer
25 views

What is the basic difference between mapping file generated by SQLMETAL and EDMGenerator?

I am making use of sqlmetal tool to generate mapping file for my entities. Recently I came across the EDMGen tool, which also generates the same mapping file. What is the difference between these 2 ? ...
0
votes
1answer
28 views

sqlmetal.exe run and output generated but how do I query my database?

I have run sqlmetal.exe agaisnt my database. SqlMetal.exe /server:server /database:dbname /code:mapping.cs I have included this into my solution. So I can now create an object for each of the ...
0
votes
1answer
30 views

can anyone think of why using this particular class in a design time data source will break all design time bindings?

I generated this class using SQLMetal.exe. It is very bindable at runtime, but if I use this class at design time, all of my design time blend bindings are busted. I am using the MVVM-Light ...
0
votes
1answer
55 views

WCF attributes and linq to sql

How can I generate dbml file (with Sqlmetal.exe) with appropiate WCF attributes (DataMember, DataContract etc)? for example: I have Client table with columns: ClientID, Name, IP, City, Phone I'd ...
0
votes
1answer
93 views

How to Use VS2008 Command prompt to generate Database Class from sqlCe Db

created a sqlce Db with VS2008 and save a copy in C:\ Temp08. can someone point out what was wrong with this Sqlmetal syntax : sqlmetal c:\Users\DELL\Documents\Temp08\NtwContacts.sdf/ ...
0
votes
0answers
62 views

ORM modelling question

I have an application in the classic N-tier form of Presentation Layer -> Business Layer -> Data Access Layer However the Data Access Layer comprises of a group of sql operations to an underlying ...
0
votes
1answer
95 views

C# SQLMetal generated code

Hei, SQLMetal generates code like this: [Column(Storage = "_specimen", DbType = "VarChar(100)")] public string Specimen { get { return this._specimen; ...
0
votes
2answers
59 views

How do I exclude the Scheme name from SqlMetal generated Objects?

SqlMetal is creating object names such as... The View: Sales.ProductDescription is created as: Sales_ProductDescription Ideally SqlMetal would create the ProductDescription class under a ...
0
votes
1answer
49 views

How should I correctly compose my Linq query where the condition is set to a foreign entity

The following are sample data for the purpose of explaining this matter: tblPrimary 1, John, 2011-01-03T11:12:00z 2, John, 2011-02-04T10:54:12z tblDetail: 1, 1, 14, Dept01 2, 1, 12, Dept02 3, 2, 10, ...

1 2