sudo nano /etc/sysctl.conf
add those lines to bottom of file:
fs.inotify.max_user_watches = 1638400
fs.inotify.max_user_instances = 1638400
sudo nano /etc/sysctl.conf
add those lines to bottom of file:
fs.inotify.max_user_watches = 1638400
fs.inotify.max_user_instances = 1638400
using System.Configuration; | |
using System.IO; | |
using System.Net.Http; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Hosting; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.Azure.WebJobs; |
The idea is to provide a database as a service to end users in such a way that no one except the user herself can access the data, not even the hosting provider or the database administrator.
$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
using System; | |
using System.Linq.Expressions; | |
using System.Reflection; | |
using WebApi.Delta; | |
namespace Hst.Deals.API.Infrastructure | |
{ | |
internal class CompiledPropertyAccessor<TEntityType> : PropertyAccessor<TEntityType> where TEntityType : class | |
{ | |
private Action<TEntityType, object> _setter; |