实体类
This commit is contained in:
parent
91a6b0000c
commit
26d564fea5
|
@ -22,7 +22,7 @@ namespace Model
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
|
|
||||||
public partial class SGGLDB_WH : System.Data.Linq.DataContext
|
public partial class SGGLDB : System.Data.Linq.DataContext
|
||||||
{
|
{
|
||||||
|
|
||||||
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
|
private static System.Data.Linq.Mapping.MappingSource mappingSource = new AttributeMappingSource();
|
||||||
|
@ -2596,25 +2596,25 @@ namespace Model
|
||||||
partial void DeleteZHGL_WorkHandoverDetail(ZHGL_WorkHandoverDetail instance);
|
partial void DeleteZHGL_WorkHandoverDetail(ZHGL_WorkHandoverDetail instance);
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public SGGLDB_WH(string connection) :
|
public SGGLDB(string connection) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(System.Data.IDbConnection connection) :
|
public SGGLDB(System.Data.IDbConnection connection) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
public SGGLDB(string connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
public SGGLDB_WH(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
public SGGLDB(System.Data.IDbConnection connection, System.Data.Linq.Mapping.MappingSource mappingSource) :
|
||||||
base(connection, mappingSource)
|
base(connection, mappingSource)
|
||||||
{
|
{
|
||||||
OnCreated();
|
OnCreated();
|
||||||
|
|
Loading…
Reference in New Issue