Click here to Skip to main content
15,899,314 members
Home / Discussions / C#
   

C#

 
AnswerRe: WPF: listbox not refreshing Pin
Dalek Dave18-Jul-11 14:37
professionalDalek Dave18-Jul-11 14:37 
GeneralRe: WPF: listbox not refreshing Pin
Yoyosch18-Jul-11 19:24
Yoyosch18-Jul-11 19:24 
Questionproblem with ADO :problem with inserting row in the same time Pin
Honeyboy_2017-Jul-11 12:19
Honeyboy_2017-Jul-11 12:19 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
PIEBALDconsult17-Jul-11 13:50
mvePIEBALDconsult17-Jul-11 13:50 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Shameel17-Jul-11 21:17
professionalShameel17-Jul-11 21:17 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Abhinav S17-Jul-11 22:36
Abhinav S17-Jul-11 22:36 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
BobJanova17-Jul-11 23:35
BobJanova17-Jul-11 23:35 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Pete O'Hanlon18-Jul-11 0:01
mvePete O'Hanlon18-Jul-11 0:01 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Ennis Ray Lynch, Jr.18-Jul-11 7:15
Ennis Ray Lynch, Jr.18-Jul-11 7:15 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Herman<T>.Instance18-Jul-11 21:27
Herman<T>.Instance18-Jul-11 21:27 
GeneralRe: problem with ADO :problem with inserting row in the same time Pin
Honeyboy_2019-Jul-11 2:36
Honeyboy_2019-Jul-11 2:36 
GeneralRe: problem with ADO :problem with inserting row in the same time Pin
Herman<T>.Instance19-Jul-11 3:09
Herman<T>.Instance19-Jul-11 3:09 
GeneralRe: problem with ADO :problem with inserting row in the same time Pin
Honeyboy_2019-Jul-11 6:54
Honeyboy_2019-Jul-11 6:54 
GeneralRe: problem with ADO :problem with inserting row in the same time Pin
Herman<T>.Instance19-Jul-11 7:50
Herman<T>.Instance19-Jul-11 7:50 
AnswerRe: problem with ADO :problem with inserting row in the same time Pin
Morton song19-Jul-11 17:30
Morton song19-Jul-11 17:30 
QuestionDataGridView , get Date from MySql Pin
igalep13217-Jul-11 7:03
igalep13217-Jul-11 7:03 
AnswerRe: DataGridView , get Date from MySql Pin
BobJanova17-Jul-11 22:29
BobJanova17-Jul-11 22:29 
Questionhow to get MAC address from Windows-mobile using C# code ? Pin
goldsoft16-Jul-11 22:38
goldsoft16-Jul-11 22:38 
AnswerRe: how to get MAC address from Windows-mobile using C# code ? Pin
thatraja16-Jul-11 23:47
professionalthatraja16-Jul-11 23:47 
QuestionLinq To SQL - My Thoughts Pin
Matt U.15-Jul-11 11:06
Matt U.15-Jul-11 11:06 
AnswerRe: Linq To SQL - My Thoughts Pin
SledgeHammer0115-Jul-11 13:37
SledgeHammer0115-Jul-11 13:37 
GeneralRe: Linq To SQL - My Thoughts Pin
Yoyosch18-Jul-11 4:37
Yoyosch18-Jul-11 4:37 
AnswerRe: Linq To SQL - My Thoughts Pin
PIEBALDconsult15-Jul-11 14:42
mvePIEBALDconsult15-Jul-11 14:42 
GeneralRe: Linq To SQL - My Thoughts Pin
Matt U.15-Jul-11 16:24
Matt U.15-Jul-11 16:24 
AnswerRe: Linq To SQL - My Thoughts Pin
dasblinkenlight16-Jul-11 15:27
dasblinkenlight16-Jul-11 15:27 
Although Entity Framework has replaced Linq2Sql in Microsoft's technology stack, the philosophy behind the APIs remains the same. Whatever you've learned about Linq2Sql will help you in EF.

My observation is that ORMs are a lot more flexible on the data query side than on the data manipulation side. I tried Hibernate/nHibernate, Linq2Sql and EF, and in all cases the data retrieval was impeccable. Writing data back, however, was a different story: all frameworks are great when you modify your data in memory and then write it back, but you must jump through the hoops to implement mass inserts (e.g. table-to-table copies), updates, or deletes. Here is a good link that explains the issue and provides a work-around for Linq2Sql[^]. Good luck!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.