Customerというエンティティがあり、3つのプロパティがあります。
public class Customer {
public virtual Guid CompanyId;
public virtual long Id;
public virtual string Name;
}
Splittingというエンティティもあり、3つのプロパティがあります。
public class Splitting {
public virtual long CustomerId;
public virtual long Id;
public virtual string Name;
}
次に、companyIdとcustomerIdを取得するメソッドを作成する必要があります。このメソッドは、companyIdの特定のcustomerIdに関連する分割のリストを返す必要があります。このようなもの:
public IList<Splitting> get(Guid companyId, long customrId) {
var res=from s in Splitting
from c in Customer
...... how to continue?
return res.ToList();
}
var res = from s in Splitting
join c in Customer on s.CustomerId equals c.Id
where c.Id == customrId
&& c.CompanyId == companyId
select s;
Extension methods
を使用:
var res = Splitting.Join(Customer,
s => s.CustomerId,
c => c.Id,
(s, c) => new { s, c })
.Where(sc => sc.c.Id == userId && sc.c.CompanyId == companId)
.Select(sc => sc.s);
Visual Studioには、Linqの例がたくさんあります。 Help -> Samples
、Linqサンプルを解凍します。
Linqサンプルソリューションを開き、SampleQueriesプロジェクトのLinqSamples.csを開きます。
探している答えは、メソッドLinq14にあります。
int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 };
int[] numbersB = { 1, 3, 5, 7, 8 };
var pairs =
from a in numbersA
from b in numbersB
where a < b
select new {a, b};
これらの2つのエンティティ間の関係については100%確信はありませんが、次のとおりです。
IList<Splitting> res = (from s in [data source]
where s.Customer.CompanyID == [companyID] &&
s.CustomerID == [customerID]
select s).ToList();
IList<Splitting> res = [data source].Splittings.Where(
x => x.Customer.CompanyID == [companyID] &&
x.CustomerID == [customerID]).ToList();
public IList<Splitting> get(Guid companyId, long customrId) {
var res=from c in Customers_data_source
where c.CustomerId = customrId && c.CompanyID == companyId
from s in Splittings_data_srouce
where s.CustomerID = c.CustomerID
select s;
return res.ToList();
}