using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.SQLite;
using System.Data.Linq.Mapping;
using DbLinq.Data.Linq;
namespace LinqToSQLite
{
class Program
{
static void Main(string[] args)
{
string connectionString = "DbLinqProvider=Sqlite;Data Source=db2.sqlite";
DataContext db = new DataContext(connectionString);
db.ExecuteCommand(Person.CreateCommand);
Table<Person> table = db.GetTable<Person>();
table.InsertOnSubmit(new Person { Name = "Alfred" });
table.InsertOnSubmit(new Person { Name = "Brian" });
table.InsertOnSubmit(new Person { Name = "Charles" });
db.SubmitChanges();
var query = from p in table select p;
foreach (var p in query)
{
Console.WriteLine(p.ID + ". " + p.Name);
}
Console.WriteLine("Done");
Console.ReadLine();
}
}
[Table(Name = "Persons")]
class Person
{
[Column(IsPrimaryKey = true, IsDbGenerated = true)]
public int ID { get; set; }
[Column]
public string Name { get; set; }
public static string CreateCommand = "CREATE TABLE IF NOT EXISTS Persons ( Id INTEGER PRIMARY KEY, Name TEXT )";
}
}
dblinq を使用して Linq を SQLite に提供する単純なアプリケーションを作成しましたが、ハングしdb.SubmitChanges()
ます。どういう理由ですか?DbMetal.exe を使用せずに単純な dblinq アプリケーションを作成したかっただけです... エラーも例外もありません。