Click here to Skip to main content
15,908,015 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to get outlook mails using add-ins Pin
Sanjeev99188-Nov-12 23:31
Sanjeev99188-Nov-12 23:31 
GeneralRe: How to get outlook mails using add-ins Pin
Dave Kreskowiak9-Nov-12 1:49
mveDave Kreskowiak9-Nov-12 1:49 
QuestionConverting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Steve Holdorf7-Nov-12 23:05
Steve Holdorf7-Nov-12 23:05 
AnswerRe: Converting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Deflinek7-Nov-12 23:20
Deflinek7-Nov-12 23:20 
GeneralRe: Converting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Steve Holdorf8-Nov-12 2:40
Steve Holdorf8-Nov-12 2:40 
AnswerRe: Converting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Richard Deeming8-Nov-12 2:16
mveRichard Deeming8-Nov-12 2:16 
GeneralRe: Converting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Steve Holdorf10-Nov-12 1:07
Steve Holdorf10-Nov-12 1:07 
GeneralRe: Converting a stream of html to xml and reading the xml into a xmldocumet in c# Pin
Richard Deeming12-Nov-12 1:58
mveRichard Deeming12-Nov-12 1:58 
QuestionVSTO Outlook Visual C# - Create a ribbon that load a windows form integrated into outlook form? Pin
Cristian Capannini7-Nov-12 22:31
Cristian Capannini7-Nov-12 22:31 
QuestionHow to convert string to Datetime including milliseconds Pin
Vijay Kanda7-Nov-12 21:45
Vijay Kanda7-Nov-12 21:45 
AnswerRe: How to convert string to Datetime including milliseconds Pin
Pete O'Hanlon7-Nov-12 22:18
mvePete O'Hanlon7-Nov-12 22:18 
AnswerRe: How to convert string to Datetime including milliseconds Pin
Braj_128-Nov-12 1:23
Braj_128-Nov-12 1:23 
GeneralRe: How to convert string to Datetime including milliseconds Pin
Vijay Kanda8-Nov-12 20:44
Vijay Kanda8-Nov-12 20:44 
GeneralRe: How to convert string to Datetime including milliseconds Pin
BobJanova8-Nov-12 23:24
BobJanova8-Nov-12 23:24 
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 

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.