- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
也许是重复的,但我找不到正确遵循以下方法的正确方法。
通常,我想从Employee表中检索与List相关的所有数据。类型MyEmployee包含用于与EmployeeID映射的EntitySourceID。因此,我想检索在列表集合中具有匹配EmployeeID和EntitySourceID的所有雇员。
类型MyEmployee看起来像:
public class MyEmployee
{
public long PersonID { get; set; }
public string ConnectionString { get; set; }
public long EntitySourceID { get; set; }
public int EntitySourceTypeID { get; set; }
}
internal IEnumerable<Person> GetPersons(List<MyEmployee> myEmployees)
{
return (from p in _context.Employee
join pList in myEmployees on p.EmployeeID equals pList.EntitySourceID
select new Person
{
PersonID = pList.PersonID,
FirstName = p.FirstName,
LastName = p.LastName,
Name = p.Name,
Suffix = p.Suffix,
Title = p.Title
}).ToList();
}
最佳答案
IQueryable与IEnumerable
解决您的一些更深层次的问题的一个好的开始将是花一些时间来发现两者之间的差异。
IQueryable
和 IEnumerable<T>
Func<T>
)和“表达式”(例如 Expression<T>
)MyEmployee
实例集合称为 THE LIST var query = from employee in _context.Employee
where employee.EmployeeId == 23
select employee;
var found = query.FirstOrDefault();
如果我想获取与“精确2”参数关联的记录怎么办?
var query = from employee in _context.Employee
where employee.EmployeeId == 23 || employee.EmployeeId == 24
select employee;
var results = query.ToArray();
if (results.Length == 0)
// didn't find anyone of the presumably existing records
else if (results.Length == 1) {
if (results[0].EmployeeId == 23)
// then we found the 23
else
// the other one
} else if (results.Length == 2)
// found both, look inside to see which is which
为了避免额外的困惑,我故意以愚蠢的方式编写了算法的最后部分(
if
部分)。
...
var results = ... got them (see above)
var map = results.ToDictionary(keySelector: x => x.EmployeeId);
var count = map.Count; // this gives you the number of results, same as results.Length
var have23 = map.ContainsKey(23); // this tells you whether you managed to fetch a certain id
var record23 = map[23]; // this actually gives you the record
foreach (var key in map.Keys) { .. } // will iterate over the fetched ids
foreach (var record in map.Values) { .. } // will iterate over the fetched values
不用担心
ToDictionary
扩展方法。
Contains
方法。
var query = from employee in _context.Employee
where listOfIds.Contains( employee.EmployeeId )
select employee;
var results = query.ToArray();
但是您需要一个“Ids列表”,而不是一个“MyEmployee实例列表”。
List<MyEmployee> originalList = new List<MyEmployee>();
// ... say you populate this somehow, or you've received it from elsewhere
int[] listOfIds = (from employee in originalList
select employee.EntityId).ToArray();
// .. and then carry on with the EF query
请注意,对集合的查询表现为
IEnumerable<T>
实例,而不是
IQueryable<T>
实例,并且与EF或LINQ to SQL或任何其他数据库或外部数据服务无关。
return (from p in _context.Employee
join pList in myEmployees on p.EmployeeID equals pList.EntitySourceID
select new Person
{
PersonID = pList.PersonID,
FirstName = p.FirstName
... etc
只需添加以下内容即可:
var entityList = _context.Employee.ToArray();
return (from p in entityList // PLEASE NOTE THIS CHANGE ALSO
join pList in myEmployees on p.EmployeeID equals pList.EntitySourceID
select ...
打包
List<MyEmployee> original = ...
// you take your list
// and you split it in sections of .. say 50 (which in my book is not huge for a database
// although be careful - the pressure on the database will be almost that of 50 selects running in parallel for each select)
// how do you split it?
// you could try this
public static IEnumerable<List<MyEmployee>> Split(List<MyEmployee> source, int sectionLength) {
List<MyEmployee> buffer = new List<MyEmployee>();
foreach (var employee in source) {
buffer.Add(employee);
if (buffer.Count == sectionLength) {
yield return buffer.ToList(); // MAKE SURE YOU .ToList() the buffer in order to clone it
buffer.Clear(); // or otherwise all resulting sections will actually point to the same instance which gets cleared and refilled over and over again
}
}
if (buffer.Count > 0) // and if you have a remainder you need that too
yield return buffer; // except for the last time when you don't really need to clone it
}
List<List<MyEmployee>> sections = Split(original, 50).ToList();
// and now you can use the sections
// as if you're in CASE 2 (the list is not huge but the table is)
// inside a foreach loop
List<Person> results = new List<Person>(); // prepare to accumulate results
foreach (var section in sections) {
int[] ids = (from x in section select x.EntityID).ToArray();
var query = from employee in _context.Employee
where ids.Contains(employee.EmployeeId)
... etc;
var currentBatch = query.ToArray();
results.AddRange(currentBatch);
}
现在您可以说,这只是一种欺骗数据库而认为数据库几乎没有工作的方法,而实际上我们仍在进行大量工作,这可能会使其他并发客户端的工作变得更加艰辛。
Thread.Sleep
...您可以使用
iterators
(查找它们),而实际上不会向RAM填充记录,无论如何这些记录都将花费很长时间,而是“流式处理”。
关于c# - 用集合EntityFramework连接表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26068939/
编辑:我似乎问错了这个问题。 我正在尝试寻找一种方法来查询一个集合是否在另一个集合中可用。例如: SELECT * FROM something WHERE (1, 3) IN (1, 2, 3, 4
这两种方法似乎 produce the same results ,但我一直很难真正说服人们第二种方法有效,因为它显然并不为人所知。 // Create some data var foo = { '
我一直在学习Kotlin,并且遇到过Collections API。在Kotlin之前,我一直在学习Java,并且我知道Java中有很多不同类型的Collections API。例如,我们使用List
为什么我会得到不同的行为: Collection col2 = new ArrayList(col); 集合 col2 = new ArrayList(); col2.addAll(col) 我正在与
所以我有一个代表专辑信息的 JSON 对象。给定“function updateRecords(id, prop, value)”我希望能够更新每个条目。正确的完成代码如下。 我得到了指示,粗体部分,
我想存储一个对象集合,这些对象根据它们所代表的值进行键控。这些键可以重复。例如: [4] => Bob [5] => Mary [5] => Sue [9] => Steve [10] =>
在检查 ArrayList API 时,我注意到一些看起来很奇怪的东西。 确实,这里是 ArrayList 构造函数实现,其中 Collection 作为参数传递: public ArrayList(
我正在为 API 编写一个 swagger 定义文件。 API 是用于 GET 请求的 /path/to/my/api: get: summary: My Custom API d
我知道scala.collection包中有两个非常有用的对象,可以帮助我们实现这个目标: JavaConverters(如果我想明确说明并准确说明我要转换的内容) JavaConversions(如
我已经阅读了无数其他帖子,但似乎无法弄清楚发生了什么,所以是时候寻求帮助了。 我正在尝试将包含集合的域实体映射到也包含集合的 dtos。 这是一个原始示例; (我提前为代码墙道歉,我尽量保持简短):
我正在创建一个具有 ArrayList 的类,因此当我调用构造函数时,它会初始化该数组: public class ElementsList { private ArrayList list;
我正在阅读事件指南和指南的开头,它说: You can also add an event listener to any element in the this.$ collection using
我是 Python 新手,想知道如何使用键在字典中存储不同数据类型的列表 例如 - {[Key1,int1,int1,String1] , [Key2,int2,int2,String2], [Key
int[] mylist = { 2, 4, 5 }; IEnumerable list1 = mylist; list1.ToList().Add(1); // why 1 does not get
我在 UI 表单中的每一行之后将以下内容添加到 HashMap 集合中 声明 Map> map = new HashMap>(); List valSetOne = new ArrayList();
我正在开发我的第一个 Java 项目,我有一个问题。问题应该很简单(虽然代码不是那么短,但没有理由被吓倒:))。我创建了一个基本的角色扮演游戏,并且有一个定义每个角色的抽象类“Character”。在
我正在开发一款应用程序,可以为用户收集推文、Facebook 状态和 Facebook 照片。目前,用户确切地设定了他们希望这种收获发生的时间和时间,并且蜘蛛会在此期间拉取数据。 when 和 to
有谁知道在 C# 中是否有与 Java 的 Set 集合等效的好方法?我知道您可以通过填充但忽略值来使用 Dictionary 或 HashTable 在某种程度上模仿集合,但这不是一种非常优雅的方式
EXISTS 该函数返回 集合中第一个元素的索引,如果集合为空,返回NULLNULLNULL Collecti
RDF集合是通过属性 rdf:parseType="Collection" 来描述仅包含指定成员的组 rdf:parseType="Collection" 属
我是一名优秀的程序员,十分优秀!