DataBase Manipulation Language

learn more… | top users | synonyms

0
votes
1answer
13 views

BaseDao for LINQ

I use linq DBML file for data mapping in my project. I have a lot of entities there, Like Areas, Locations, Departments, etc. I want something like Base Dao that implements base functions like ...
0
votes
2answers
37 views

c# linq to sql iterating through left join results

I have a query that looks like this: var emp = (from activeWO in context.ActiveWOs join activeWOUpdated in context.ActiveWOUpdatedTimes on activeWO.PW_ID equals ...
0
votes
0answers
16 views

when i drag and drop stored procedure onto my dbml file(VS 2010) and save it creates another designer1.cs file

In my project i have data-access layer which contains dbml file(named test.dbml) used to drag and drop stored procedure and tables. 2 days ago strange thing happened when i drag and drop stored ...
2
votes
3answers
64 views

How to create an Access DB with vba / c# (DBMS) [closed]

I have seen some tutorials but everything that I am trying is not working. I want a simple project with just one textbox (where the name of the database goes) and a button that creates theAccess DB ...
0
votes
2answers
52 views

dbml changes the type of varbinay(max) on Sql Server to Systm.Data.Linq.Binary but not byte[]

I have some table in Sql Server which has VarBinary(MAX) and I want to upload files to them, I need to make the Dbml to make the field byte[] but instead I get Systm.Data.Linq.Binary. Why is that and ...
0
votes
1answer
60 views

LINQ to SQL getting Type and Length

I've been tasked with finding the Type and Length of a specific column from the DBML. I would like to pass in the DataContext, TableName and then ColumnName to return my values that I'm looking ...
1
vote
1answer
48 views

would changing dbml to bigint work for int values

our db is undergoing migration from int to bigint. In migrated partitions I have a column name in a table that is stored as bigint and in other partitions it is stored as int(to be migrated). ...
2
votes
0answers
19 views

DBML file, drag and drop table - overwrite [duplicate]

Just a general question regarding the DBML file in my project. Say, For e.g my DBML file shows the r/ships between 30 tables. To save me looking through the entire document for a particular table is ...
0
votes
0answers
167 views

How to connect dbml with the database?

Hi I am new to database concepts and database related programming. Now I want to create a local database in my application. I am using Visual studio 2012 for simple adesktop based application. I have ...
0
votes
2answers
71 views

how can i select ONLY the first row of this dbml query?

this is my original query public UserChallenge GetUserChallenge(int userId, int challengeId) { var result = from userChallenge in DataContext.UserChallenges ...
0
votes
1answer
94 views

Linq 2 SQL - Inheritance Multiple SQL Statements

Whilst implementing the AdventureWorks db in a sample application using Linq 2 SQL i've ran into a problem with the way in which Linq 2 SQL generates SQL statements for derived types in the ...
1
vote
2answers
137 views

isolation level in linq to sql , DataContext

Need suggestion for the Dbml File with linq , We have database with large amount of data. some times there is lock in table.so we need to apply isolation level with read uncommited (We know some ...
0
votes
1answer
88 views

DataContext seems to be pulling 2 copies of the same record from the database

I have a DataContext that seems two be pulling two copies of the same record out of the database. There's only one record of this kind in the database. Here the code that is doing it: ...
0
votes
0answers
93 views

Make .dbml file in a class library use connectionstring from config file without subclassing it

I have a class library that is referenced from a web application. The class library defaults to using TestProject.Properties.Settings.Default.NFU_Custom_Website_DataConnectionString1. I would like it ...
0
votes
1answer
47 views

Method not Found error when updating SQL Compact db and dbml for linq to sql

I have a vb.net app that uses linq to sql with a SQL Compact database. I just updated a date field in the database to be nullable and regenerated the dbml using sqlmetal. Now when I run the ...
0
votes
1answer
61 views

How do I hook up classes to my Linq-to-Sql?

Linq / Linq-to-Sql / C# newbie question, but I can't seem to find any useful information on it. It is possible I'm not phrasing the question correctly. Any help appreciated. So, I have some existing ...
3
votes
1answer
169 views

Add column in database then update the dbml

I have an application that have a dynamic table in database. The problem is, let say there's a change in table structure like addition of column, can I update the dbml file dynamically? so I don't ...
0
votes
0answers
96 views

DBML error : Invalid object name 'dbo.SPNAME'

I am using dbml to manage database operations. I have used and worked with over 50 + sp's using this dbml and all seems to work fine. Today I added a new sp to the dbml file and when that sp is ...
0
votes
1answer
118 views

Add column to database and reflect in DBML file Invalid Column name error

I have a huge .dbml file. I need to add a column to a Contact table for storing a datetime which will then later be used to determine if the contact should be displayed or not. I added the column to ...
0
votes
1answer
105 views

Force linq dbml file to get database values

I have two sites, one administration site, where i can edit all the values in a database, and a public site that only reads the data from the database. Both the site have identical dbml files to work ...
1
vote
1answer
42 views

Linq2Sql Buildtime takes ages

I am using Linq2Sql to access my database which is fairly large. (67 tables) It's quite a pain in the butt to work with currently because it takes ages for the "MSLinqToSQLGenerator" to generate it's ...
1
vote
0answers
134 views

Uniformity in Accessing SDF and SQL Server Datasources

My application has the ability to run off an .SDF file (SQL Server Compact) for data if the client supports it, or a SQL Server database if the client does not support .SDF files. The only problem is ...
1
vote
2answers
155 views

Linq making primary key system.nullable<int> not just int

I'm mapping my database into base object with Linq to SQL. I drag all the tables into my dbml and they all setup nicely. I save the dbml and it creates the classes that represent the tables, etc. ...
1
vote
1answer
204 views

Linq Stored Procedure Issue- Returning an int

I am trying to call a stored procedure with Linq, the stored procedure returns the value fine in SQL, but when I drag it onto my DBML file and try and call it from my code it is returning the ...
4
votes
1answer
158 views

Linq Mapping dbml - capturing stored proc parms for error reporting

When using the dbml autogeneration in visual studio, a stored procedure call typically ends up looking like this ...
0
votes
1answer
112 views

DbLinq DbMetal - “The given key was not present in the dictionary” when adding Foreign Key

This is my initial SQLite database CREATE TABLE [Categories] ( [ParentId] INT, [Name] VARCHAR(100)); CREATE TABLE [Fees] ( [CategoryId] INT, [Name] VARCHAR(100), [Value] VARCHAR(50), ...
0
votes
1answer
118 views

Two identical dbml data context's in one asp.net application

I have a separate copy of a sql server2008 database that we used to isolate data. I would now like to bring a few records into the production database from this separate database. I am not sure of the ...
1
vote
0answers
163 views

Foreign Key Causes WCF Socket Connection to Abort

I have 2 tables, Unit and SubUnit, with a one to many relationship: a Unit can have 0 or more SubUnits. I use Linq to SQL (.dbml files) in a WCF Windows Service to access the database. Using the ...
0
votes
0answers
174 views

dbml inheritance primary key in association

im creating a media database in Visual Studio 2012. I have problems when creating relations using dbml file in VS. My tables are now: Media MediaId (primary key) Season MediaId (primary key) ...
0
votes
0answers
74 views

Changing association reference in DBML, dynamic data webform

I have a dynamic data webform that has one dimension table referenced by two fact tables. The associations between the fact tables and the dimension table work. However, factTable1 needs a different ...
0
votes
3answers
75 views

Does change of DBML file clears user session as web.config?

Does change of DBML file clears user session as web.config does? What could be a consequence of changing dbml file on live?
0
votes
0answers
35 views

Adding DB table to dmbl produce strange errors

I have a dbml file that contains almost all the tables of a database. Everything is ok, it works as expected (compile + run). Now I have to add the last table of the model. The table is named ...
0
votes
0answers
14 views

How do I drop iSeries data connection tables to the dbml

I am using .net to connect to the iseries. In the DBML designer it won't let me drop the files from the connection to the designer. "Object not supported" Is there a way around this?
0
votes
0answers
28 views

Dbml schema insertfunction

dbml schema As you can see into the schema, there are some xml elements like "insertfunction", "updatefunction" and "deletefunction". Same here : Same schema + French But how could I add a ...
0
votes
1answer
141 views

How do i select only particular records from table when using dbml class?

In my project i'm using dynamic data controls to generate lable , textbox , dropdownlist I'm binding all values using .dbml class as using linq to sql now when i populate my dropdown with following ...
0
votes
0answers
51 views

Linq to Sql - save entity class in different project

Is it possible to have linq save the generated Entity classes in a different project than the project that houses the DBML file? (I know I can assign a different namespace and move it manually but I ...
0
votes
2answers
366 views

Override the setter generated in the DBML file

I want to override a setter of a property in a partial class: Partial class: public partial class User { public string Name { set { // Do something } ...
0
votes
1answer
188 views

Add sql user defined function as a property to dbml

I have a user defined function in sql server that returns a string. I want to add this as a property to my class in linq to sql dbml file. My Class represents a view in sql server. (Note, I don't want ...
2
votes
1answer
119 views

Linq to SQL: View to Table Association not generating code

I have a dmbl with a bunch of tables and some views where I set up an Association in the Designer from the View to the Table. Then in code I try and write some code that "uses" that association and ...
0
votes
2answers
207 views

Linq to sql deleteAllOnSubmit referential integrity

Let's say I have the following classes that: Module { long MID // PK string Name } ModuleBlock { long MID // FK long BID // FK } ...
1
vote
1answer
118 views

How to create a database from a model .dbml

I have a project that was previously connected to a database SQL Server 2012, but now I want to connect to a local database. How to create a local database on the model .dbml?
0
votes
2answers
366 views

Multiple DBML models best practice for class names

Several of our apps use multiple databases from the example below - each in their own separate DBML file. The problem is, MVC by convention puts them all in namespace AppName.Models causing class name ...
2
votes
1answer
240 views

LINQ to SQL DBML: Drag and Drop changing table names

Currently we are manually updating the DBML by deleting all tables and then re-adding all of them again through Server Explorer. We have had no problems doing it this way before. Recently after ...
0
votes
0answers
38 views

Setting up a dbo for a class function

authors is a Table of PUBS.mdf. In class1.vb Partial Public Class PubsContext Dim authors As Object Public Function GetProductsByCategory(ByVal id1 As Integer) As IEnumerable(Of authors) ...
0
votes
0answers
41 views

Beginning program to print a gridview1 on the asp.net website

I have a database "Pubs" with a table "authors". I have made a dbml file from the database by dragging over "authors". Here is the "Default.aspx.vb" Public Class _Default Inherits ...
0
votes
1answer
668 views

Creating a .dbml file from a .mdf in Data Connections [closed]

I have added my database (db1) to the Database Explorer in Visual Web Developer. I want to create a .dbml file from that database. How do I do that?
0
votes
0answers
62 views

DBML doesnt capture unique key information in tables

I built my tables in management studio and brought everything into a DBML designer. For deployment purposes, I use the dbml's datacontext to create the database. The unique key index information is ...
2
votes
2answers
775 views

Stop LINQ to SQL dbml from updating connection string when I drag tables into the dbml file

Every time I drag a modified table into my dbml, VS2010 wants me to update the connection string even though I have created a data connection with the exact same information. Every time this happens ...
0
votes
1answer
332 views

Connecting to dbml from Wcf service

I have Web application and android application which are communicating with Wcf Services. One of my Service is Chat.svc [ServiceContract(Namespace = "http://webchat.com")] public interface IChat { ...
0
votes
0answers
32 views

Create associations between two forign key and one Primary key in linq to sql

Here are my tables : main table **tbl_Log:** LogRowId primarykey,unique,Int tblSelectionId TinyInt tblRowId Int Date Datetime LogText ...

1 2 3 4 5