标签: c# database linq error-handling
public static class DB { public static Table<Address> Address() { return **new Table<Address>();** } }
由于某种原因,这段代码给我一个错误,说“类型'System.Data.Linq.Table'没有定义构造函数”。我不知道它是否与Address引用SQL DB中的表有关。为什么要这样做?
我该如何解决这个问题?
答案 0 :(得分:4)
错误消息是正确的。 Table<T>类没有可用的公共构造函数。您可以在MSDN上确认:Table<TEntity> Class。
Table<T>
Table<TEntity>