Click here to Skip to main content
15,886,771 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to convert string to Datetime including milliseconds Pin
Vijay Kanda11-Nov-12 19:15
Vijay Kanda11-Nov-12 19:15 
GeneralRe: How to convert string to Datetime including milliseconds Pin
BobJanova11-Nov-12 22:10
BobJanova11-Nov-12 22:10 
Questionhow to sort Datalist using Dropdown which is not in the datalist control Pin
sreeCoderMan7-Nov-12 21:19
sreeCoderMan7-Nov-12 21:19 
Questiondatagridview child rows Pin
mynamearan7-Nov-12 20:18
mynamearan7-Nov-12 20:18 
AnswerRe: datagridview child rows Pin
Wayne Gaylard7-Nov-12 21:14
professionalWayne Gaylard7-Nov-12 21:14 
GeneralRe: datagridview child rows Pin
Mycroft Holmes7-Nov-12 22:08
professionalMycroft Holmes7-Nov-12 22:08 
GeneralRe: datagridview child rows Pin
Wayne Gaylard7-Nov-12 22:32
professionalWayne Gaylard7-Nov-12 22:32 
QuestionC# linq to sql default problem Pin
sc steinhayse7-Nov-12 12:57
sc steinhayse7-Nov-12 12:57 
In a C# 2010 application, I used linq to sql to setup my database connections.
Now when I move the application to a different database, the original database is still being used. Basically the connection string is hard coded into theapplication.

I tried to follow the linq listed below, but everything did not work.
http://goneale.com/2009/03/26/untie-linq-to-sql-connection-string-from-application-settings/

The part that says, "1.Open up the LINQ to SQL designer, and open the Properties tab of the designer (the schema itself),
expand Connection and set Application Settings to False. ", I did not see this option.
The closest thing I found was connection and I set that value.

Here is the way the code looks now in the *designer.cs file.

namespace e_ClScripts
{
using System.Data.Linq;
using System.Data.Linq.Mapping;
using System.Data;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
using System.Linq.Expressions;
using System.ComponentModel;
using System;


[global::System.Data.Linq.Mapping.DatabaseAttribute(Name="DEV")]
public partial class eDataContext : System.Data.Linq.DataContext
{

private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();

    #region Extensibility Method Definitions
    partial void OnCreated();
    partial void Inserte_Detail(e_Detail instance);
    partial void Updatee_Detail(e_Detail instance);
    partial void Deletee_Detail(e_Detail instance);
    partial void InsertIBook(IBook instance);
    partial void UpdateIBook(IBook instance);
    partial void DeleteIBook(IBook instance);
    partial void InsertIPackage(IPackage instance);
    partial void UpdateIPackage(IPackage instance);
    partial void DeleteIPackage(IPackage instance);
    partial void InsertIError_Tran(instance);
    partial void UpdateIError_Tran(IError_Tran instance);
    partial void DeleteIError_Tran(IError_Tran instance);
    partial void InsertTransaction_Type(Transaction_Type instance);
    partial void UpdateTransaction_Type(Transaction_Type instance);
    partial void DeleteTransaction_Type(Transaction_Type instance);
    partial void Inserte_Tracking(e_Tracking instance);
    partial void Updatee_Tracking(e_Tracking instance);
    partial void Deletee_Tracking(e_Tracking instance);
    #endregion

public eDataContext() : 
base(global::e_ClScripts.Properties.Settings.Default.DEVConnectionString, mappingSource)
{
OnCreated();
}

public eDataContext(string connection) : 
base(connection, mappingSource)
{
OnCreated();
}

public eDataContext(System.Data.IDbConnection connection) : 
base(connection, mappingSource)
{
OnCreated();
}

public eDataContext(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) : 
base(connection, mappingSource)
{
OnCreated();
}

public eDataContext(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) : 
base(connection, mappingSource)
{
OnCreated();
}


Here is what the app.config file looks like right now:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
    </configSections>
    <connectionStrings>
        <add name="e_ClScripts.Properties.Settings.DEVConnectionString"
            connectionString="Data Source=instance1\DEV;Initial Catalog=dev3;Integrated Security=True"
            providerName="System.Data.SqlClient" />
    </connectionStrings>
</configuration>

Can you tell me or show me in code how to fix my problem so the application does not
use the hard-coded values that were setup by linq to sql?
AnswerRe: C# linq to sql default problem Pin
Mycroft Holmes7-Nov-12 13:12
professionalMycroft Holmes7-Nov-12 13:12 
GeneralRe: C# linq to sql default problem Pin
sc steinhayse7-Nov-12 18:14
sc steinhayse7-Nov-12 18:14 
GeneralRe: C# linq to sql default problem Pin
Mycroft Holmes7-Nov-12 18:26
professionalMycroft Holmes7-Nov-12 18:26 
AnswerRe: C# linq to sql default problem Pin
jschell8-Nov-12 8:49
jschell8-Nov-12 8:49 
QuestionReplicate a class from an assempli and add a new constructor Pin
PozzaVecia7-Nov-12 11:45
PozzaVecia7-Nov-12 11:45 
AnswerRe: Replicate a class from an assempli and add a new constructor Pin
Mycroft Holmes7-Nov-12 13:07
professionalMycroft Holmes7-Nov-12 13:07 
AnswerRe: Replicate a class from an assempli and add a new constructor Pin
DaveyM697-Nov-12 18:42
professionalDaveyM697-Nov-12 18:42 
GeneralRe: Replicate a class from an assempli and add a new constructor Pin
PozzaVecia7-Nov-12 22:41
PozzaVecia7-Nov-12 22:41 
GeneralRe: Replicate a class from an assempli and add a new constructor Pin
DaveyM698-Nov-12 18:39
professionalDaveyM698-Nov-12 18:39 
GeneralRe: Replicate a class from an assempli and add a new constructor Pin
Andy4118-Nov-12 20:53
Andy4118-Nov-12 20:53 
QuestionHow to structure my application Pin
ASOSEA7-Nov-12 1:11
ASOSEA7-Nov-12 1:11 
AnswerRe: How to structure my application Pin
Pete O'Hanlon7-Nov-12 1:34
mvePete O'Hanlon7-Nov-12 1:34 
GeneralRe: How to structure my application Pin
ASOSEA7-Nov-12 2:53
ASOSEA7-Nov-12 2:53 
AnswerRe: How to structure my application Pin
Mycroft Holmes7-Nov-12 11:34
professionalMycroft Holmes7-Nov-12 11:34 
QuestionConvert PPT to image Pin
Er. Neel Kamal7-Nov-12 0:54
professionalEr. Neel Kamal7-Nov-12 0:54 
Questionhow to report the single record into crystal report Pin
sri apple6-Nov-12 20:02
sri apple6-Nov-12 20:02 
AnswerRe: how to report the single record into crystal report Pin
Mycroft Holmes6-Nov-12 22:23
professionalMycroft Holmes6-Nov-12 22:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.