c# DbSet - Internal object cannot be got(c# DbSet - 无法获取内部对象)
问题描述
我需要将实体切换到内部.所以我创造了它.没有构建/运行时错误.但是当我想使用 DbSet 对象时,我不能,因为该对象似乎没有初始化!
I need to switch an entity to internal. So I create it. No build/runtime error. But when I want to use the DbSet object I can't because the object seems not initialized !
我的上下文实体:
public partial class Entities
{
internal DbSet<Employee> EmployeeSet { get; set; }
}
我是这样使用的:
Entities context = new Entities();
List<Employee> employees = context.EmployeeSet.ToList();
但EmployeeSet"为空.我认为这是因为它没有在 get 中实例化.如果我像这样使用 public ,它会起作用:
But "EmployeeSet" is null. I think it's because it is not instantiated in get. It works if I use public like this:
public partial class Entities
{
public DbSet<Employee> EmployeeSet { get; set; }
}
问题:如果 DbSet 标记为内部,它可以工作吗?如果有怎么办?为什么会破坏它?(感谢斯科特斯塔福德)
Questions: Can it work if a DbSet is marked internal? If so how? Why does that break it? (thanks Scott Stafford)
推荐答案
不设置为public
不会自动实例化.您可以使用 Set< 手动实例化它.TEntity>()
方法.
It will not be automatically instantiated if it is not set to public
. You can manually instantiate it using Set<TEntity>()
method.
public partial class Entities
{
internal DbSet<Employee> EmployeeSet { get; set; }
public Entities()
{
EmployeeSet = Set<Employee>();
}
}
这篇关于c# DbSet - 无法获取内部对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:c# DbSet - 无法获取内部对象
基础教程推荐
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- rabbitmq 的 REST API 2022-01-01