You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
647 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity;
using System.Linq;
using System.Web;
namespace DSWeb.Common.DB
{
public class OtherDB : DbContext
{
public OtherDB() : base("DongShengDB")
{
}
public OtherDB(string conn) : base(conn)
{
}
public DbSet<view_hrmresource_md> view_hrmresource { get; set; }
public DbSet<view_pjrequestbas_md> view_pjrequestbas { get; set; }
public DbSet<view_xdf_md> view_xdf { get; set; }
}
}