2
Answers

Return Array

toanhoi bui

toanhoi bui

14y
17.2k
1

Hi,Everybody.I am writing a function in C# and it returns a Array .Example I have a struct
<way id="11552263" user="GeoGrafiker" uid="69127" visible="true" version="5" changeset="1845506" timestamp="2009-07-16T15:51:05Z">
  <nd ref="103005166" />
  <nd ref="103005167" />
  <nd ref="103005169" />
  <nd ref="103001090" />
  <nd ref="102999142" />
  <nd ref="103003909" />
  <tag k="created_by" v="Potlatch 0.10f" />
  <tag k="highway" v="residential" />
  <tag k="name" v="Mai Hac De" />
  </way>
When I enter "Mai Hac Ðe" ,The all node id of this way is saved in Array .This node are 103005166,103005167 ,103001090,102999142,103003909.This function is
 public Array Search(string name)
{
....
.Can you help me ,please???

 
Answers (2)
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
I'm not sure that it's a good idea to write a LINQ query which just changes the state of existing objects and then adds them to a List but, if you must do it, then I'd try this:

List<ServiceDetail> serviceDetails = ServiceDetails 
.Where(serviceItem =>
{
  serviceItem.Patient = Patients.Where(i => i.PatientId == serviceItem.PatientId).FirstorDefault();
  serviceItem.Registration = Registrations.Where(i => i.RegistrationId == serviceItem.RegistrationId).FirstorDefault();
  return true; // select everything regardless
})
.ToList();

Accepted
0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
pulagara,

Please start a new thread if you want to ask a new question.

You'll have a better chance of getting a reply :)
0
pulagara murali

pulagara murali

NA 40 35.1k 13y
Hi,

I have one more query , how to pass parameters from Silverlight to Asp.net(without querystring and Initparameters)?

Could you give me any Idea?
0
pulagara murali

pulagara murali

NA 40 35.1k 13y
Thanks for Giving this Response....
0
pulagara murali

pulagara murali

NA 40 35.1k 13y
Thanks for Response,

I have a Collection like ServiceDetails. It Contains 

Patient Object and Registration Object

ServiceDetail serviceDetail=new ServiceDetail ();
serviceDetail.Patient=new Patient();
serviceDetail.Registration=new Registration();

ServiceDetails(serviceDetail);

Above Is my Objct Formation.

In this case I have Two Other Collections Like 'Patients' and 'Registrations'

For above Object formation I wrote like below
 
List<ServiceDetail> serviceDetails=new List<ServiceDetail>();
foreach(ServiceDetail serviceItem in ServiceDetails)
{
          //Bind Patient Object
        serviceItem.Patient=Patients.where(i=>i.patientid==serviceItem.patientid)
                                        .firstorDefault();
          //Bind Registration Object
        serviceItem.Registration=Registrations.where(i=>i.registrationId==serviceItem.registrationid)
                                        .firstorDefault();
        serviceDetails.add(serviceItem);

}

  ServiceDetails=new List<ServiceDetail>(serviceDetails); 
  
 For above collection formation I used one foreach. My query is I don,t used even one foreach also to make a Collection, instead of foreach I want to use Lamda expression or Linq Query .

Could you give any Idea on this Query Please?


0
Vulpes

Vulpes

NA 98.3k 1.5m 13y
It's impossible for any one to answer this question unless you tell us what the relationship is between the Patient, Registration and ServiceDetails classes.

Jean's made a good guess that the first two inherit from the third but another possibility is that a ServiceDetails object is somehow constructed from instances of the other two classes.
0
Jean Paul

Jean Paul

NA 46.3k 6.2m 13y
Hello Murali,

I can provide a solution in which the above typed lists are casted to object.
(I believe the classes Registration and Patient are deriving from ServiceDetails)

            List<Registration> l1 = new List<Registration>();
            List<Patient> l2 = new List<Patient>();

            List<ServiceDetails> l3 = new List<ServiceDetails>();
            l3.AddRange(l1.Cast<ServiceDetails>());
            l3.AddRange(l2.Cast<ServiceDetails>());

The above code is in Lambda..

If the classes are not having base as ServiceDetail, you may declare an implicit operator overloading like..
(but not sure it will fit the above code)
 public class Patient
    {
        public static implicit operator ServiceDetail(Patient p)
        {
            return new ServiceDetail();
        }
    }

Regards,
JP