7
Answers

C# 2008 linq to sql paramters

dc

dc

12y
2k
1
After I parse out a company name and contact name from an excel spreadsheet 2010, I need to query a sql server 2008 r2 database, to obtain more information that is needed for processing. My problem is the  name and/or contact name that is obtain from the file name, may be different than the actual value in the database.

For example the company name obtained from the file name may look like:
'Blue group' however the actual file company name in the database may be
'Blue (of northeast) group' or 'Blue inc'?

Note: I am told that the combination of company name, contact name will be distinct enough so I can obtain the database rows I am looking for.

Thus can you tell me how I could use linq to sql to query the database using the company name with the value obtain from the filename where the database value could be different?
Answers (7)
0
Sandeep Singh Shekhawat

Sandeep Singh Shekhawat

NA 22.4k 12m 12y
inilization properties according to object like:

tramp.DogColour = "Blue";

and after that display data.
0
Jackson Eatherden

Jackson Eatherden

NA 3 1.4k 12y
Hi sandeep

Thanks for the response.
I did the code you suggested and was told by my teacher that i have to make a new instace of the dog class (this will become clear when i put the text up) calling the constructor that i create for size.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloDogs
{
    class Dog
    {
        private string barkSound;
        private string breed;
        private int dogHeight;
        private string dogColour;
        static int noOfLegs = 4;

        public static int NoOfLegs
        {
            get { return Dog.noOfLegs; }
            set { Dog.noOfLegs = value; }
        }

        public string DogColour
        {
            get { return dogColour; }
            set { dogColour = value; }
        }
        

        public string Breed
        {
            get { return breed; }
            set { breed = value; }
        }

        private string dogSpeech;
        
        public int Height
        {
            get { return dogHeight; }
            set { dogHeight = value; }
        }

        

        public Dog (int dh, string dc,string b)
        {
            dogHeight= dh;
            dogColour= dc;
            breed= b;
        }
        
        private bool IsBig (int height)
        {
            if (height >=50)
                return (true);
            else
                return (false);
        }

        public Dog()
        {
            barkSound = "Woof!";
            breed = "cocker spaniel";          
        }

        public string GetSpeech()
        {
            string size;
            if (IsBig(dogHeight))
            {
                size = "big";
            }
            else
            {
                size = "small";
            }

            dogSpeech = "Hello. I am a " + breed + ". " + barkSound + " my height is " + dogHeight+" therefore i am " + size;
            return dogSpeech;
            
            
        }
        public void SetSound(String barkSound)
        {
            this.barkSound = barkSound;
        } 

    }
}


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace HelloDogs
{
    class DogChorus
    {
        Dog lady;        
        Dog tramp;
        Dog c;
        Dog d;
        
        public DogChorus() {
            lady = new Dog();        
            tramp = new Dog();
            c = new Dog();
            d = new Dog();
            tramp.SetSound("Ruff!");
        }

        public string GetOutput(){
            return lady.GetSpeech() + " \n " + tramp.GetSpeech() + "\n" + c.GetSpeech() + "\n" + d.GetSpeech() + "\n" + " All dogs have " + Dog.NoOfLegs + " legs";
        }
    }
}
I hope this helps


0
Sandeep Singh Shekhawat

Sandeep Singh Shekhawat

NA 22.4k 12m 12y
Can you please give code sample?

OR 

You can do it using Text property of these control under button click event...

Like:

txtrich.Text = txtFirst.Text + " "+ txtSecond.Text + "   " +txtThird.Text +"  "+ txtFour.Text;


Thanks
Sandeep