间歇性部分检索 LINQ to SQL 记录
我有一个辅助角色,为我们的应用程序执行大量后端处理。我正在使用 LINQ to SQL 从我们的 SQL Azure 数据库检索记录。但是,我正在检索的对象间歇性地填充了部分数据。该对象将填充 id(int 自动增量)、外键(uniqueidentifier)、createdate(日期时间),但 NVARCHAR 字段将为空。
我尝试过以下 LINQ 表达式。
return (from showing in DB.Showings
where showing.eGUID == eGUID
select showing).FirstOrDefault();
及其更简单的表弟
DB.Agents.SingleOrDefault(a => aGuid == a.aGUID);
我在应用程序的其他部分没有经历过这种情况,但我承认 DB 是我在应用程序中创建的最大的 dataContext。
任何想法将不胜感激,因为我已经没有想法了。
I have a worker role that does a whole bunch of backend processing for our app. I'm retrieving records with LINQ to SQL from our SQL Azure database. However, intermittently the objects I'm retrieving are partially populated with data. The object will have the id(int auto increment), foreign key (uniqueidentifier), createdate (datetime) populated but the NVARCHAR fields will be null.
I have tried the following LINQ expressions.
return (from showing in DB.Showings
where showing.eGUID == eGUID
select showing).FirstOrDefault();
and its simpler cousin
DB.Agents.SingleOrDefault(a => aGuid == a.aGUID);
I have not experienced this in other parts of the application but I will admit that DB is the largest dataContext I have created in the app.
Any thoughts would be appreciated as I have run out of ideas.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论