c# Programming Glossary: crud
Loading Subrecords in the Repository Pattern http://stackoverflow.com/questions/1223194/loading-subrecords-in-the-repository-pattern example is that all the repositories are sharing the same CRUD functionality at the base level but he doesn't go beyond this..
View Models and dependency injection http://stackoverflow.com/questions/14131804/view-models-and-dependency-injection While working on a LOB desktop application with a lot of CRUD operations using PRISM and Enterprise Library I have noticed..
Connecting C# to Oracle http://stackoverflow.com/questions/1626636/connecting-c-sharp-to-oracle I am planning C# application that will do basic CRUD operations on Oracle database. Which library driver is smallest..
Syncing SQL Server 2008 Databases over HTTP using WCF & Sync Framework http://stackoverflow.com/questions/1656652/syncing-sql-server-2008-databases-over-http-using-wcf-sync-framework to generate T SQL for querying change tracking data and CRUD SqlSyncAdapterBuilder builder new SqlSyncAdapterBuilder builder.Connection..
What NoSQL solutions are out there for .NET? [closed] http://stackoverflow.com/questions/1777103/what-nosql-solutions-are-out-there-for-net built entirely with Redis. Sample code showing a complete CRUD app public class Todo public long Id get set public string Content..
Escaping values in SQL queries (C# with SQL connector) http://stackoverflow.com/questions/2020373/escaping-values-in-sql-queries-c-with-sql-connector Management Objects instead of executing SQL strings. For CRUD operations parameters is absolutely the only true path. UPDATE..
Domain Driven Design: Domain Service, Application Service http://stackoverflow.com/questions/2268699/domain-driven-design-domain-service-application-service naturally fit within a domain object and are NOT typical CRUD operations those would belong to a Repository . Application.. system think Web Services . If consumers need access to CRUD operations they would be exposed here. Infrastructure Services..
What's a good alternative to firing a stored procedure 368 times to update the database? http://stackoverflow.com/questions/3282254/whats-a-good-alternative-to-firing-a-stored-procedure-368-times-to-update-the-d the DB. Also worth noting I'm fairly new when it comes to CRUD operations and the database. I much prefer to play work in the..
Repository Pattern, POCO, and Business Entities http://stackoverflow.com/questions/3720013/repository-pattern-poco-and-business-entities generated by EF right All I'd need is the Repository to do CRUD And I'll be having three repositories for this example one for.. concerns of the entity not the persistence concerns CRUD . If there are no business operations on your entites then yes..
AppFabric caching examples using c# [closed] http://stackoverflow.com/questions/4739548/appfabric-caching-examples-using-c-sharp myImportantDataKey myUpdatedImportantData That's the basic CRUD operations but there's plenty more that you can get into for..
SharePoint for a C# ASP.NET Developer [closed] http://stackoverflow.com/questions/535255/sharepoint-for-a-c-sharp-asp-net-developer basic operations such as creating custom forms using basic CRUD operations with a custom SQL Server database Also is there any..
How can I pass a lambda expression to a WCF service? http://stackoverflow.com/questions/6443433/how-can-i-pass-a-lambda-expression-to-a-wcf-service are services. I wanted to have my Read method in the CRUD of my resource access layer take a predicate in the form of..
How good/bad is sharepoint programming? [closed] http://stackoverflow.com/questions/832465/how-good-bad-is-sharepoint-programming done provisioning done row level security done basic UI CRUD done deployment to multiple front ends done search done. Now..
WCF Service or Web API http://stackoverflow.com/questions/9502548/wcf-service-or-web-api can be self hosted . For handling operations which are non CRUD in nature I'd recommend Googling REST non CRUD . I found this.. are non CRUD in nature I'd recommend Googling REST non CRUD . I found this blog post RESTful URLs for non CRUD operations.. non CRUD . I found this blog post RESTful URLs for non CRUD operations and particularly the comments interesting . If you..
|