Lỗi An exception of type ‘System.TypeInitializationException’ occurred in EntityFramework.dll but was not handled in user code Additional information: The type initializer for ‘System.Data.Entity.Internal.AppConfig’ threw an exception. Kiểm tra lại thẻ <startup> …
Read More “Lỗi cấu hình file app.config”
|
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION; |
Trong đó
|
GRANT [type of permission] ON [database name].[table name] TO ‘[username]’@'localhost’; |
Với các loại quyền trong MySQL gồm ALL PRIVILEGES– User có full quyền trên database được cấp. CREATE– Cho phép user tạo bảng và databases. DROP– …
Read More “Cho phép kết nối đến mysql từ xa”
Nói sơ qua Reflection là các class trong namespace System.Reflection, nó cùng với các class trong namespace System.Type giúp mình xác định được các thông tin từ các assemblies(thông thường là các file …
Read More “Reflection trong .NET Framework”
Application Domain (viết tắt AppDomain, đây cũng là tên lớp tương ứng trong .Net) có mục đích tạo một môi trường cách ly nằm bên trong một process, tương tự …
Read More “Application Domain”