I
I
indim2014-03-02 11:47:18
Books
indim, 2014-03-02 11:47:18

What book to start learning WCF?

I have "basic" knowledge of the C# language.
I want to get acquainted with WCF technology/framework.
Interested in literature, courses (both text and video). It is desirable that the information be up-to-date, possibly presented in a fascinating way (?) and in Russian.
It is interesting to know how you started and what can you advise me?
Thank you.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
R
redmoonstudio, 2014-03-28
@redmoonstudio

1) Juval Lowy. Programming WCF Services: Mastering WC...
2) Justin Smith. Inside Windows Communication Foundation...

A
Alexander, 2014-03-02
@avorsa

Damn, Google canceled?

R
Roman, 2015-06-01
@victorib_us

I think something like this:

usort($arr, function ($a, $b)
{
    if ($a['rate'] == $b['rate']) {
        return 0;
    }
    return ($a['rate'] > $b['rate']) ? -1 : 1;
});

N
Narek, 2015-06-01
@webtop

<?php
$arr = array(
  array(
    'name' => 'name_1',
    'rate' => 1
  ),
  array(
    'name' => 'name_1',
    'rate' => 2
  ),
  array(
    'name' => 'name_1',
    'rate' => -3
  ),
);

uasort($arr, function($a, $b){
  if ($a['rate'] == $b['rate']) {
        return 0;
    }
    return ($a['rate'] < $b['rate']) ? -1 : 1;
});
print_r($arr);

T
trevoga_su, 2015-06-01
@trevoga_su

sort using DBMS

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question