Skip to main content

Posts

Showing posts from 2016

So you want to use Sqlite with EF 6?

You know about normal SQL databases and wanna start playing around with SQLite and have a rough understanding what SQLite is. For working with it you desire to use EF from the start on. And you want to use the "Database First" Approach and create your model the sqlite database. Thats how I wanted to do it. Unfortunately, using DB-first approach with sqlite is very tricky and volatile. I managed to do it... only to find that 2 months later my Visual Studio wasnt able to do the same thing again because the "Data Provider" inside my visual studio had forgotten the installed sqlite... and i needed to do the procedure again. so my actual suggestion is.... if you want to use SQLite with EF then.... don't.  Seriously . For now, for small applications I need a local DB started to use Dapper together with SQLite instead and use Code-First. Its really much easier. If you follow the steps in this excellent article during reading you will have a working ORM solution
von fast allen habe ich glückwünsche bekommen. nur die eine die mir noch wirklich wichtig wäre habe ich aus nachvollziehbaren gründen nicht bekommen
Quickstart to start game development with Javascript  So you want to start making some games for the web and want to dive right into it? You have some understanding about programming and maybe even game development but this whole Web-Thing and setup for being able to use the new Javascript is just a hassle for you you dont want to dive right into? Then this blog post is for you. Setting up the toolchain for making easy javascript coding for the browser is a knowledge in itself... and it doesnt have much to do too much with programming. so enthusiasts might be put off. Unfortunately the current ecosystem makes it hard for newcomers to modern javascript. Following this link you will get a completely set-up toolchain to be able to create your own HTML5 games using Pixi and Howler . Its crude and the toolchain doesnt support tests but it will get the job done. You can even use it to make simple deployments.it should make it possible for you to get the tutorials you find on t