
GitHub - valentjedi/ddd-dynamic: Domain Driven Design in Python, Ruby and other dynamic languages resources Windows Phone 7 - Wprowadzenie | MSDN (Polska) Autor: Bartłomiej Zass Opublikowano: 2010-09-23; Zaktualizowano: 2010-12-20 Windows Phone 7 jest innowacyjną platformą mobilną umożliwiającą tworzenie zaawansowanych gier oraz aplikacji użytkowych. Każde urządzenie ma ustaloną z góry specyfikację techniczną, co ułatwia przystosowanie projektowanych rozwiązań do szerokiej grupy odbiorców. Duży ekran pojemnościowy o rozdzielczości WVGA (800x480) Czteropunktowy mechanizm multi-touch Akceleracja sprzętowa grafiki DirectX 9 Zestaw sensorów: GPS, akcelerometr, kompas, światło i czujnik zbliżeniowy Kamera cyfrowa Stały zestaw przycisków: Start, Search, Back Wsparcie dla komunikacji poprzez sieci telefonii komórkowej oraz Wi-Fi 256 MB (lub więcej) RAM oraz 8 GB (lub więcej) pamięci flash Telefony zintegrowane są z globalnym katalogiem aplikacji – Windows Marketplace, który jest jednocześnie jedynym dostępnym mechanizmem wgrywania ich na telefon. Do programowania aplikacji można wykorzystać jedno z dwóch wybranych API:
Generate JSON Data Using Web Service And SQL Server Stored Procedure Let’s know about Web Service Web Services are used for enabling an application to invoke a method of another application. These applications can be on the same computer or different computers. Web Services use protocols like HTTP, XML, and SOAP. Since these are open and well known protocols, the applications built on any platform can interoperate with Web Services. For example, a PHP application can interoperate with a Web Service built using .NET. Hyper Text Transfer Protocol (HTTP) is the protocol widely used by web services to send and receive messages. To know more about SOAP request and response, visit the below reference site. A web service is a web-based functionality accessed using the protocols of the web to be used by the web applications. Creating the web serviceCreating a proxyConsuming the web service Introduction to proxy in ASP.NET Web Service A proxy is a major part for the web service codes. Step1 Script Step2 Step3 Step4 Code Ref
Introduction - C# Tutorial Welcome to this C# tutorial. With the introduction of the .NET framework, Microsoft included a new language called C# (pronounced C Sharp). C# is designed to be a simple, modern, general-purpose, object-oriented programming language, borrowing key concepts from several other languages, most notably Java. C# could theoretically be compiled to machine code, but in real life, it's always used in combination with the .NET framework. C# is an Object Oriented language and does not offer global variables or functions. In the following chapters, you will be guided through the most important topics about C#.
Desarrollo Web, Tu mejor ayuda para aprender a hacer webs. Creating ASP.NET Web API with MVC 6 Posted by: Mahesh Sabnis , on 12/9/2015, in Category ASP.NET Abstract: In this article, we will build an ASP.NET Web API using MVC 6. In earlier versions of ASP.NET, Web API was provided as a separate Web API framework, but going forward in the ASP.NET 5 release, Web API is merged with MVC, termed as MVC 6. ASP.NET Web API uses the power of HTTP. As developers, we all know that the HTTP protocol is not just limited to delivering web pages, but is being used to build APIs on top of it that expose services and data. The advantages of HTTP is it is simple and easy to use and all platform supports HTTP. In this article, we will build an ASP.NET Web API using MVC 6. The following diagram explains Web API in application development The above diagram provides conceptual use of Web API. Implementing the ASP.NET Web API application To implement the Web API application, we will use Visual Studio 2015 and ASP.NET 5 RC1. Click on the OK button. The above class file contains following classes
Script Efficiently Import Large CSVs into SQL Server Using PowerShell, C# or VB.NET Online peer support For online peer support, join The Official Scripting Guys Forum! To provide feedback or report bugs in sample scripts, please start a new discussion on the Discussions tab for this script. Disclaimer The sample scripts are not supported under any Microsoft standard support program or service. The sample scripts are provided AS IS without warranty of any kind. Microsoft further disclaims all implied warranties including, without limitation, any implied warranties of merchantability or of fitness for a particular purpose.
High-Performance Techniques for Importing CSV to SQL Server If you’ve ever tried to use PowerShell’s Import-CSV with large files, you know that it can exhaust all of your RAM. Previously, I created a script on ScriptCenter that used an alternative technique to import large CSV files, and even imported them into SQL Server at a rate of 1.7 million rows a minute. I’ve now gotten that number up to a massive 3.2 million rows a minute 5.35 million rows a minute for non-indexed tables and 2.6 million rows a minute 4.35 million rows a minute for tables with clustered indexes. Importing into SQL Server Two of the fastest ways to import data is to use bcp or SqlBulkCopy. BCP is finicky, and requires a separate download. I’ve tested three different methods for transforming CSV data to a consumable object. Setup My lab is a VMWare virtualized lab which now consists of a Windows 10 machine with 6GB RAM, and a SQL Server 2014 instance with 12GB RAM (8 dedicated to SQL Server). First, I had to create the SQL table. Then I tested the various methods. The Script
Procesando dinámicamente fórmulas creadas por el Usuario Por Armando Canchala Descargar ejemplos de este artículo (36 KB). Contenido Introducción El ejemplo Procedimiento Clase para el procesamiento Introducción En algunas ocasiones, los requerimientos de una aplicación piden el uso de fórmulas, las cuales son creadas y manejadas directamente por el usuario. Cuando una aplicación está conformada por gran cantidad de fórmulas, el analista programador tiene dos opciones: resolver las fórmulas desde el código y luego definir con el usuario cuáles son las fórmulas y cómo se resuelven; o bien desarrollar un mecanismo a través del cual los usuarios guarden las fórmulas en una base de datos y desde allí un objeto las lea, las procese y las resuelva devolviendo el resultado. La primera opción no es práctica puesto que el código queda atado al programador, ya que cuando cambie una fórmula o se cree una nueva fórmula, éste debe entrar al código e implementar la solución a aquella. El ejemplo Figura 1. Procedimiento Campo 4 = RESULTADO MiProceso.Procesar();
Tips para llevarse bien con Entity Framework I | Anexsoft Esta entrada requiere conocimientos previos con el Entity Framework Comparto esta entrada donde dare ciertas pautas para aprender a sobrevivir y llevase con nuestro amigo el Entity Framework. 1- Cuando trabajamos un proyecto avanzado y conectamos a N base de datos la tarea se pone un poco más compleja.. 2- Si vas a iniciar un proyecto de cero te recomiendo previamente analizar y CONOCER las reglas de negocio para tu sistema. Nuestro primary key deben llamarse "id", ser numérico y asignarle la propiedad identity. Ejem: tenemos la tabla Usuario, esta sería su estructura: Usuario id int primary key identityNombre VARCHAR(20)FechaNacimiento DateTime De esta manera trabajamos los ID para nuestras tablas para que el EF lo reconozca por defecto. 3- Recomiendo instalar el EF Tools el cual existe para la versión 2012 y 2013 de nuestro visual studio. Elegimos ADO.NET Entity Data Model y la opción Code First, seteamos nuestra cadena de conexión y elegimos las tablas a mapear.
Inversion of Control in C# with Examples - Dot Net Tutorials Back to: Dot Net Design Patterns With Real-Time Examples In this article, I am going to discuss the Inversion of Control in C#. Please read our previous article, where we discussed the Abstract Factory Design Pattern in C# with examples. Difference between Design Principle and Design PatternInversion of Control (IoC)Understanding the Dependency Inversion Principle.Understanding the Dependency Injection Design PatternIoC Container Difference between Design Principle and Design Pattern In the programming world, both design principles and design patterns are not the same. Design Principle: The Design principles are provided with some high-level guidelines or you can say mechanism to make the software designs more understandable, flexible as well as maintainable. E.g. For example, the Single Responsibility Principle (SRP) states that a class should have only one reason to change. Design Pattern: There are so many design patterns that are tested by others and safe to follow. IoC Container:
dotnet-architecture/eShopOnContainers: Easy to get started sample reference microservice and container based application. Cross-platform on Linux and Windows Docker Containers, powered by .NET Core 2.2, Docker engine and optionally Azure, Kubernetes or Se JavaScript JavaScript (JS) es un lenguaje de programación ligero, interpretado, o compilado justo-a-tiempo (just-in-time) con funciones de primera clase. Si bien es más conocido como un lenguaje de scripting (secuencias de comandos) para páginas web, y es usado en muchos entornos fuera del navegador, tal como Node.js, Apache CouchDB y Adobe Acrobat JavaScript es un lenguaje de programación basada en prototipos, multiparadigma, de un solo hilo, dinámico, con soporte para programación orientada a objetos, imperativa y declarativa (por ejemplo programación funcional). Lee más en acerca de JavaScript. Esta sección está dedicada al lenguaje JavaScript en sí, y no a las partes que son específicas de las páginas web u otros entornos host. Para información acerca de APIs específicas para páginas Web, consulta APIs Web y DOM. El estándar para JavaScript es ECMAScript (ECMA-262) y la especificación de la API para la Internacionalización de ECMAScript (ECMA-402). Empieza aquí Tutoriales JavaScript asíncrono