以下のような C# クラスをマークアップしたいと思います。リフレクションを使用して mysql または sqlite create table ステートメントを作成するツールまたはライブラリはありますか?
class MyTable {
public int id;
[FK("User")] //assumes table user, field id. FK("User.id") is just as fine
public int user;
[Index]
public int flags;
[unique]
public string email;
[unique, nullable]
public string something_else;
}