The SqlMetal command-line tool generates code and mapping for the LINQ to SQL component of the .NET Framework.
0
votes
1answer
118 views
Error in C# using LINQ to SQL and sqlmetal System.InvalidCastException: Specified cast is not valid
When running some code I've written on our production server or another developers machine it crashes on this line.
Ac_CalcDetail xy = db.Ac_CalcDetails.Where(chld => ...
0
votes
0answers
42 views
SqlMetal produces different output on different databases
we are using SqlMetal to generate LinqToSql classes.
In our "Core" class we have this command in Pre-build event:
$(ProjectDir)\..\Lib\sqlmetal.exe /server:[ServerName] /database:[DatabaseName] ...
1
vote
1answer
70 views
Can I tell SqlMetal to not add INotifyPropertyChanging and INotifyPropertyChanged?
I'm currently using SqlMetal to generate a data context for a SQL Server Compact Edition 3.5 database.
This database will be used in a Windows Phone 7 application, and will only be read from. For ...
2
votes
0answers
154 views
Generating dbcontext with sqlmetal creates my table value UDF columns as nullable
I've created a inline table UDF which have some various columns of different types.
ALTER FUNCTION [dbo].[fnTest]()
RETURNS TABLE
AS
RETURN
(
SELECT
[t0].[type],
...
1
vote
0answers
152 views
How do I set Auto-Generated-Values and Auto-Sync with SQL Metal or in Code
It's 1:30am for me now, so I'm sorry if there are any confusing bits in here.. it seems to make sense in my head.. :-)
I've been using SQLMetal to generate a data context for my database tables...
I ...
2
votes
2answers
111 views
Could anyone explain me the difference in the following 2 queries?
I'm working with SqlMetal (linq to sql) in order to retrieve stuff from the database.
However, im getting different results using the following code:
var record1 = ...
0
votes
0answers
56 views
Using SqlMetal with an existing project
I am working on a project that the previous developer lost a contract on. They have used linq thoughout for database interaction. I need to add various fields to the existing db inserts ect, but I'm ...
0
votes
1answer
61 views
How does sqlmetal generate association names?
The association names sqlmetal generates have been the source of much frustration. Sometimes the association is simply the column name with "Id" taken off the end, sometimes it generates an ...
0
votes
1answer
287 views
Sqlmetal failing to generate dbml file for SQL Server Compact Edition 3.5 db
I can't seem to generate a dbml file using Sqlmetal for a simple SSCE 3.5 db.
I am using the VS command prompt, am sitting in the VS project directory that contains the db, and then enter the ...
2
votes
1answer
140 views
I can setup LINQ to SQL in VC2010 fine, so why is SQLMetal relevant?
I am new here so hello.
I am using ASP.NET 4 and I am using LINQ to SQL for my data controls. As advised I create a DBML (LINQ to SQL Class Item) and then drag on the relevant tables from SQL Server. ...
1
vote
1answer
488 views
Use SQLMetal on SQL Azure Database
For reasons that I would not like to discuss, our master database schema is currently only in SQL Azure. We are working on bringing it down locally using a tool like Enzo Backup (we're waiting on ...
2
votes
2answers
116 views
selective get and delete posts from database
In my windows phone 7 app i have database-class generated by sqlmetal.
in addition, i have class that helps to work with this database.
public static IList<Task> GetTasks()
{
...
3
votes
3answers
199 views
LINQ to SQL - Sql tuning
I am using LINQ to SQL for much of the data access layer and am trying to view and tune the underlying SQL used. Does anyone know a good mechanism to intercept the SQL used by C# LINQ and/or replace ...
0
votes
1answer
93 views
sqlmetal.exe adding a namespace to the partial classes automatically
Is it possible to add a namespace to all the partial classes that sqlmetal.exe generates? I could do this manually but would like it automate it.
0
votes
1answer
281 views
Collection Bind to expanded View won't update when new Items are added
I am using a Expander View in my MainPage that is Bind to a collection of "Account Categories" (each item in this collection has further a collection of Accounts)
The Bindings are all working fine, ...
0
votes
1answer
251 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 ...
1
vote
0answers
59 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
121 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
2answers
144 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
196 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 ...
1
vote
1answer
313 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
88 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 ...
0
votes
1answer
203 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/ ...
2
votes
2answers
520 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 ...
2
votes
1answer
213 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
78 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 ...
0
votes
1answer
195 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
139 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 ...
2
votes
4answers
2k 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();
// ...
6
votes
3answers
952 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 ...
2
votes
1answer
216 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 ...
0
votes
1answer
71 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, ...
3
votes
2answers
546 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 ...
0
votes
2answers
1k views
How to use DbLinq SqlMetal for MySQL on Mac?
I'm using Mono/MonoDevelop on Mac OS, and I want an example for using SqlMetal (DbLinq version included with Mono) for LINQ-to-SQL with MySQL database.
Oddly, I found many examples for SQLite, but ...
0
votes
2answers
758 views
generating .dbml using SQLMetal
I'm new to LINQ to SQL. I have tried Object Relational Designer(O/R Designer) Approach to generate classes and worked well. But, I wondering is there any way I can generate the same .dbml file for my ...
2
votes
2answers
789 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 ...
0
votes
1answer
492 views
How to include an auto generated file in a MsBuild project?
Using MsBuild 4.0 I included a pre-build event that generates one of the project source files.
But it seeks for the file before it is generated:
error CS1504: Source file ...
1
vote
1answer
1k 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 ...
2
votes
2answers
927 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 ...
0
votes
1answer
282 views
LINQtoSQL: What is the Map File for?
I am currently using SqlMetal to generate my dbml and code file. I am using Visual Studio 2010 and SqlServer 2000. Unfortunately Visual Studio 2010 only support SqlServer 2005 or greater so I am ...
0
votes
1answer
67 views
LINQ to SQL: origins of EnumMapper.exe?
in this system I'm currently working on, the DataContext is being generated using SqlMetal via a process very similar to what's detailed here.
Run SqlMetal.exe on database to generate a dbml file
...
1
vote
2answers
1k 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 ...
6
votes
3answers
463 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 ...
2
votes
2answers
2k 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 ...
5
votes
2answers
197 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 ...
2
votes
3answers
1k 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 ...
0
votes
1answer
195 views
Does SQLMetal support SQL-Server 2008 datatypes?
I'm using LinqToSQL in a 3.5 framework project in VS2K8, running against MS SQL 2k8.
When I create the table mappings using the design surface within Visual Studio everything works fine.
When I ...
1
vote
2answers
1k views
SQLMetal DataContext Associations Not Generated
I am generating the LINQ-to-SQL DataContext and entity classes for a database. The database has several tables, two of which are - [AccountMaster] and [AccountCodes]. There is a foreign key ...
0
votes
1answer
369 views
Executing LINQ Queries In Excel To SQL
I want to be able to interact with an SQL database using LINQ and Excel (it's a legacy thing). Is this sort of thing possible?
I'm screwing around with SQLMetal, and have generated some database ...
1
vote
1answer
70 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 ...