私はコードを持っています
using (InContext inContext = new InContext())
定義を右クリックすると、C:\Users\me\AppData\Local\Temp\....
それは何ですか?定義済みの dll ?
#region Assembly SharedObjects.dll, v4.0.30319
// C:\source\blah\blah\packages\SharedObjects.1.0.4659.22817\lib\net40\SharedObjects.dll
#endregion
using blahSharedObjects;
using System;
using System.Data.Entity;
namespace something
{
public class InContext : DbContext
{
public InContext();
public InContext(string connectionString);
public DbSet<InDetails> InDetailRecords { get; set; }
public string IPAddress { get; set; }
public string UserName { get; set; }
}
}