-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.cs
More file actions
31 lines (27 loc) · 1.07 KB
/
client.cs
File metadata and controls
31 lines (27 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace Flow_ClientWin
{
using System;
using System.Data.Entity;
using System.Linq;
public class client : DbContext
{
// Your context has been configured to use a 'client' connection string from your application's
// configuration file (App.config or Web.config). By default, this connection string targets the
// 'Flow_ClientWin.client' database on your LocalDb instance.
//
// If you wish to target a different database and/or database provider, modify the 'client'
// connection string in the application configuration file.
public client()
: base("name=client")
{
}
// Add a DbSet for each entity type that you want to include in your model. For more information
// on configuring and using a Code First model, see http://go.microsoft.com/fwlink/?LinkId=390109.
// public virtual DbSet<MyEntity> MyEntities { get; set; }
}
//public class MyEntity
//{
// public int Id { get; set; }
// public string Name { get; set; }
//}
}