Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
there's any tutorial who explains how to use asp mvc with postgres? (or any other db who don't be MSSQL)
There's two ways you can go.
You can use a data provider like
this:
http://npgsql.projects.postgresql.org/exampleprograms.html
You can use a LINQ provider for
Postgres similar to this:
http://www.devart.com/dotconnect/linq.html?gclid=CP7V6ePG6ZsCFSMSagodlWxx5Q
Here's a code project article describing how to use the data provider: http://www.codeproject.com/KB/database/afppostgresqlintro.aspx
I have to use a webservice as data source, i make a wrapper for the webservices and put all the data in lists, so i can use linq with them. Then use all existing tutorials for MVC.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am currently working with signalR and its purely new to me.and i have to bulid a application, in that i want to display signalR interaction with database and wants to display a gridview/html table an wants to perform crud operations. and that chages must reflect instantly on other browsers. i have done lots of google but i am not getting any example that help me.So please if any one has any demo application that interact with db using ado.net please help me out i am very thank ful to you
Yes you can use Ado.net with signalr follow this link given below for the demo application
http://www.c-sharpcorner.com/UploadFile/raj1979/broadcast-sql-data-using-signalr-in-Asp-Net/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm trying to write my own LDAP Client Library.
Would you like to give me some examples of such libraries which use OOP.
They can be written in C++, Java, C#, etc.
Thanks in advance!
In java, LDAP can be connected through javax.naming.ldap.* packages which comes in standard distribution. I found the following two links, where in you can get sample codes.
http://www.adamretter.org.uk/blog/entries/LDAPTest.java
http://code.google.com/p/java-use-examples/source/browse/trunk/src/com/aw/ad/LdapBasicExample.java?r=2
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm wondering what the best supported way of accessing the youtube data api is with c#?
Are any of the library's up to date? I can quite easily switch to Django or Rails for this app, but thought I would start with C# as it seems that it is referred to in the current docs. However the examples seem inconsistent, so I'd rather just switch to something that works than mess about with this.
And you can get c# examples at https://github.com/youtube/api-samples/tree/master/dotnet
and the library is in https://developers.google.com/api-client-library/dotnet/apis/youtube/v3
Google has a variety of libraries to make this fairly simple:
https://developers.google.com/youtube/v3/libraries
Including this .NET version:
https://code.google.com/p/google-api-dotnet-client/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am new to ORMLite. In Entity Framework I can create my POCO files (by using CodeFirst) from an existing database- I read somewhere that this was possible in Ormlite- but I didn't find it within the documentation.
Please recommend a framework to create my poco classes in case ORMLite does not support this feature (I do not want to generate my pocos with EF!)
Thank you!
To get OrmLite.Poco.tt working, remove the blank lines at the end of OrmLite.Poco.tt and OrmLite.Core.ttinclude.
You can use the T4 templates to generate the POCOs. Have a look at
https://github.com/ServiceStack/ServiceStack.OrmLite/tree/master/src/T4
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am learning to use C# WPF with Microsoft SQL CE database. Can anyone point me to some good step by step tutorial on how to use the SQLCE with WPF? I have read MSDN, but none on the site helps. I need something simple: how to connect, insert, read rows, store to datagrid etc, not some sites that play with NorthWind.
I have a sample here: http://erikej.blogspot.com/2011/02/using-sql-server-compact-40-with-wpf.html
NerdDinner is a good start
http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx
I found this article very helpful:
http://www.codeproject.com/Articles/680116/Code-First-with-SQL-CE