SQLite-DNA / SqliteDna

MIT License
4 stars 0 forks source link

Rename [Function] -> [SqliteFunction] #2

Closed govert closed 1 year ago

govert commented 1 year ago

Even though it's in a SqliteDna namespace, it feels like Function is too generic.

        [SqliteFunction]
        public static int Foo2()
        {
            return 2;
        }
govert commented 1 year ago

I should note that there is also System.Data.SQLite SQLiteFunctionAttribute in the .NET provider.

Sergey-Vlasov commented 1 year ago

I've renamed [Function] -> [SqliteFunction].