6
votes
4answers
355 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 …
3
votes
2answers
176 views
[Linq to SQL] 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
215 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
1answer
1k 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
1answer
67 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 …
2
votes
3answers
298 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
1answer
148 views
SQLmetal, is it only a mapper for linq to sql?
Hi,
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
2answers
70 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
122 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 …
1
vote
1answer
105 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
2answers
234 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 …
1
vote
2answers
318 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
1answer
16 views
How to read Dbml file and map it into an object model in .net?
Im planning to write a code generator to generate UI (forms, grids, etc.). Since i'm using Linq i'm planning to read dbml file for metadata extraction purposes. I wonder if there is some Api to read …
0
votes
4answers
44 views
Generation custom files from dbml file?
Hi,
I've been having a look at making changes to the partial classes generated from a DBML file. I was reading into using the sqlmetal.exe tool but it appears that you can't do much customisation of …
0
votes
1answer
123 views
MSLinqToSQLGenerator generates different output than SQLMetal
I have a rather large DBML file and recently discovered that Visual Studio's MSLinqToSQLGenerator is generating different output than:
SqlMetal.exe All.dbml /code:All.designer.vb /namespace:LINQ2FSE …
