One of the dificulties for the one who is new the coding or has lack of experience is to find valuable recources which might bring you a bit hand-on experiences. In the end you should put extra effort in order to cover many aspects being taught but if you do not know where to start,ContinueContinue reading “Learn how to code practically”
Author Archives: Deniz Karadal
telc Deutsch C1 exam
I have been preparing for an about one year for this exam and want to share with you my observations and what should be done from my point of view in order to succeed. Let’s start with what actually telc Deutsch C1 is: telc Deutsch C1 tests general German language skills at an advanced level.ContinueContinue reading “telc Deutsch C1 exam”
Singleton Design Pattern
If we would ever speak, what a design pattern is, that answer would be that a well described solution to a common software problem. One of them is about which we will discussing is “Singleton”. Singleton pattern lies under “Creational design pattern” group. Here is the list of this group. Creational Design Patterns Singleton PatternFactoryContinueContinue reading “Singleton Design Pattern”
Installing PostgreSQL for Windows
PostgreSQL also known as Postgres, is a free and open-source relational database management system (RDBMS) emphasizing extensibility and SQL compliance. It is being used by many of the well-known companies all over the world. Here as on the headline described, I will be telling the windows based installation but for other systems there are also detailed explanations regarding it. In this case google isContinueContinue reading “Installing PostgreSQL for Windows”
C# – Mapping Enum Types to Entity Properties in the Entity Framework Designer
Enums have implicit numeric indicies. You can change the “seed”: Implies 1, 2, 3 The Entity Framework Designer maps enums to int data types. In Entity Data Model Diagram(edmx) – Right-click column – Select convert to enum – In the Add Enum Type dialog, either: — Select reference external type, enter namespace + type, or…ContinueContinue reading “C# – Mapping Enum Types to Entity Properties in the Entity Framework Designer”