间歇性部分检索 LINQ to SQL 记录

发布于 2024-12-11 01:42:35 字数 549 浏览 0 评论 0原文

我有一个辅助角色,为我们的应用程序执行大量后端处理。我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文